Hello,
I'm moving some php scripts to a diffrerent server. On the new server the following code doesn't yield the same result.
$time = 1051934875;
$time = date("M j, Y g:i a", $time);
echo "$time";
On the old server the result is "May 3, 2003 12:07 am" on the new server the result is "May 3, 2003 4:07 am". The old server is running PHP 4.2.2 and the new one is running 4.3.1. Any ideas on why I'm not getting the same result would be appreciated.