I am posting the following date format in a php form to a formatted php page.
The date and time output was:- Thu, 22 May 2003 08:00:10
The actual date and time was:- Thu, 22 May 2003 09:04
My client is correct and the server is correct. Any idea why the time is not quite right?
It happens on every client, I have checked.
Here is the code I used to collect the NOW time.
<input type="hidden" name="date" value="<?php echo $now = gmdate("D, d M Y H:i:s"); ?>" />
Any help appreciated.
Thanks
Jon