Hi, is this syntax correct? I have a mysql DATE column called date_available that I'm attempting to make this happen:
July 10, 2004
Or is there a better way around this?
$part=explode("-",$row->date_available);
$newdate=date("F j, Y", mktime(0,0,0,$part[1],$part[2],$part[0]));