How would you change the format of the DATETIME from a MySQL Database.
Code:
echo $r["date"]; echo date("F j, g:ia",$r["date"]); Output:
2014-02-05 15:31:51 December 31, 6:33pm These are both two different dates, not sure why.
date() requires the second parameter to be a unix timestamp. You need to pass your datetime string to strtotime() before using it in date()
echo date("F j, g:ia",strtotime($r["date"]));
date(php.net/date)... It's second parameter is a unix timestamp, not a string.