I am using this code to get the date and time to send with my form but it is out by 45 minutes. Any ideas?
$date = date("m/d/y h:m:s A");
I don't get it??
your servers time is off
you can compensate like this
$date = date("m/d/y h:m:s A", time() - 2700); // 2700 seconds = 45 min