C Cecily New member Jul 22, 2009 #1 I already have the date in mySQL admin I just need to pull it from the table and make it display all pretty in my website.
I already have the date in mySQL admin I just need to pull it from the table and make it display all pretty in my website.
M misplacedme New member Jul 22, 2009 #2 Convert the datetime to a timestamp $timestamp = strtotime($record_row); Convert that into whatever you like. date('Y-m-d H:i:s', $timestamp)
Convert the datetime to a timestamp $timestamp = strtotime($record_row); Convert that into whatever you like. date('Y-m-d H:i:s', $timestamp)