Jump to content

westondunn

Members
  • Posts

    3
  • Joined

  • Last visited

westondunn's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Awesome! Thanks you two! Worked like a charm!
  2. If I change this to: while($max < 24){ if($month == 13){ Then will it start the new year from 13 and then continue? I will try to make sure, just getting your explanation.
  3. 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 " "; ?>
×
×
  • 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.