I'm having a problem formatting mySQL Timestamp values
I had this before outputting my timestamp values:
$row[timestamp] = date("D M j h:i:s a T Y");
Unfortunately what happens instead is PHP assigns the current time to the timestamp then formats it. I want it to just format the stored timestamp value..not give it the current time.
Thanks for any help