Hello
can you explain why php time and server time are different
<?php
$today = date("F j, Y, g:i a");
echo $today;
echo "<br>".shell_exec("date");
?>
November 18, 2010, 12:56 am => time returned by php date
Thu Nov 18 02:56:31 AST 2010 => server time
There are 2 hours difference , why ?
Thank you