I’m having the most difficult time getting the date to print May 17th, 2010 with the month (“F”) format being the issue. I’m having to get it to say November (the current month) but if I subtract from that it turns into an integer. Any help would be most appreciated! Thank you!
[php]
// Display the following date using the date() function: “May 24th, 2010”
$month = date (“F”, time()) - 6;
$day = date (“D”, time()) + 17;
$year = date (“Y”, time()) - 2;
echo $month," ", $day ,"th, ", $year;
[/php]