Jump to content

HELP! Display more than 12 months!


westondunn

Recommended Posts

I need help displaying more than 12 months on this project.  I can't seem to make this loop work without repeating months of the year.  All I really need is to display more than 12 months at a time.

 

echo"

";

date_default_timezone_set('America/Los_Angeles');
$dateComponents = getdate();
$month = $dateComponents['mon'];
$year = $dateComponents['year'];
$max = 0;

while($max < 12){
if($month == 13){
$month = 1;
$year++;
}
$thisMonth = date("F", mktime(0, 0, 0, $month, 1, 2012));
echo "#$thisMonth$year
";
$month++;
$max++;
}
echo "

";
?>

Link to comment
https://forums.phpfreaks.com/topic/278288-help-display-more-than-12-months/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.