From: "Brian Dunning" <[EMAIL PROTECTED]>

> I'm trying to set a datetime field to 24 hours in the future...
> 
> NOW()+6000, which worked on a timestamp field, only gives 12 seconds in 
> the future. Algebra suggested I try NOW()+7200000 which is invalid.

field = NOW() + INTERVAL 1 DAY

or

field = NOW() + INTERVAL 24 HOUR

---John Holmes...

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

Reply via email to