> well, i know that, but, on my php, the time() function returns the > current time adding 2 hours, Your system clock is definitely set right? Try: $ perl -e 'print time()."\n"' And compare that to a PHP script which does <? print time() ?> And put that through 'date -r' to confirm it's correct. Anil