How to set mysql date from a result set to a php datetime object?

Ayub Zafar

New member
i am trying to set the date and time (DateTime stored in mysql database) to a php DateTime object, one way is to override the class some how to make that happen, but is there any easier way than that?

e.g.
$date = new DateTime();
$date->setDate($mysql_resultset['date_time']);

and then format that date according and display it.
 
Back
Top