neilfurry Posted August 30, 2012 Share Posted August 30, 2012 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 Quote Link to comment Share on other sites More sharing options...
Jessica Posted August 30, 2012 Share Posted August 30, 2012 If you run it today, that will happen, because there is no February 30th. March will show up twice due to that. Try changing your strtotime arg to "Y-m-01" or something that uses "1st of month, year" etc. Quote Link to comment Share on other sites More sharing options...
neilfurry Posted August 30, 2012 Author Share Posted August 30, 2012 Fantastic!!!! your the one.... Thank you soooooo muchhhhhh.... It works!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.