On Fri, 21 Nov 2003, Jeff Lewis wrote:
> Sorry, I may have muddled that...the issue isn't converting a string to
> a time, it's taking a time (1026360000 for example) and adding 30 days

Having it in seconds since the epoch makes this pretty easy
(60 * 60) * 24 = 86400 // seconds in a day
(86400 * days) + timestamp

-- 
Kelly Hallman
//Ultrafancy/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to