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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.