i’d like to convert this datetime that was generated by MySQL, i’d like to convert this to just Month and day.
This is my current format 2012-09-17 00:55:56
and I want to convert it to September 17 only
how can I do this using PHP code?
Thanks in advance!
Why not do it directly in
MYSQLusing DATE_FORMAT()SQLFiddle Demo