Jump to content

help me pls. with month loop


neilfurry

Recommended Posts

Hi,

 

can you help me pls. i need to create a loop of month, but the output show March twice:

 

August 2012

July 2012

June 2012

May 2012

April 2012

March 2012

March 2012

February 2012

January 2012

December 2011

November 2011

October 2011

September 2011

 

here is my code:

 

                      $i = 13;

$month = strtotime(date("Y-m-d"));

 

while($i >= 1)

{

$month_name = date('F', $month);

$m = date('m', $month);

$year = date('Y',$month);

$my = $month_name." ".$year;

 

echo  $my."<br>";

 

$month = strtotime('-1 month', $month);

$i--;

}

 

 

can you tell me what wrong?

 

Regards.

 

Neil

Link to comment
https://forums.phpfreaks.com/topic/267817-help-me-pls-with-month-loop/
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.