Hi there,
I have a timestamp in a mysql database 20040727150214 and I am just trying to get it to format out in a readable date format in php.
I have tried:
$time2 = date("F j, Y, g:i a",$testtime2);
where testtime2 is the mysql timestamp and I just echo $time2 and what it is getting me is January 18, 2038, 7:14pm
Which isnt anywhere near correct. Anyone have any ideas? thanks!