Thanks for the help. Had to make an adjustment in the last echo string.
You said to add this
echo "\t<td><font color='white'>".date("d/m/y H:i",$log[timestamp]."</font></td>\n";
it needed to be this.
echo "\t<td><font color='white'>".date("d/m/y) H:i",$log[timestamp]."</font></td>\n";
You just left off a coma...
But, I still have a problem. This is what timestamp looks like in the log.
Timestamp
08/27/02
00:351030330088
I did change the date to m/d/y but as you can see the time is way screwed up. Can I get it to display the time in something ledgible?

Thanks
Edit: Also it seems the date is whatever todays date is and not the date the log was made.