well I am using this code to format my date and time:
$date = date("m/d/Y g:i:s A T");
echo $date;
and it prints out:
08/10/2006 4:07:37 AM GMT
The problem is that it is printing the time in GMT which is wrong as I want it to tell me the time in EST or what ever it is set on viewer's machine.
Thanks