Ok, I give up. I want to compare a timestamp(14) field in a MySQL table with the current time. Currently I use the following pseudo-sql:
select field from table where table.time < date("YmdHis", time())
only, the table timestamp is GMT time and the time function is returning
local time. How do I convert time() to GMT time?
Thanks!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

