monkeybidz Posted May 1, 2006 Share Posted May 1, 2006 I am trying to order by a certain month only, say January for instance. The current script calls all months available in database. Below is a part of the code i need help with. [code]$query = "SELECT a.starts FROM NAMEOFMYDATABASE_problem a WHERE a.starts=starts ORDER BY a.starts ASC limit $offset, $limit"; $result = mysql_query($query); $tmp_date = mysql_result($result,$i,"a.starts"); $month = substr($tmp_date,4,2); $day = substr($tmp_date,6,2); $year = substr($tmp_date,0,4); $date = "$month/$day/$year";[/code]What can i do to order data for january only since it uses a substr temp date?Thanks in advance. Link to comment https://forums.phpfreaks.com/topic/8794-order-by-month-query/ Share on other sites More sharing options...
radox Posted May 1, 2006 Share Posted May 1, 2006 just change your query to grab the month you need.ie. for JanuarySELECT a.starts FROM NAMEOFMYDATABASE_problem a WHERE a.starts=starts AND MONTH(a.starts)='1' ORDER BY a.starts ASC limit $offset, $limit Link to comment https://forums.phpfreaks.com/topic/8794-order-by-month-query/#findComment-32292 Share on other sites More sharing options...
monkeybidz Posted May 1, 2006 Author Share Posted May 1, 2006 Thanks so much! I have been trying this for months, but through other methods that did not do what i wanted. It works just like i want now. I made a few more modifications, but it works.Thanks again! Link to comment https://forums.phpfreaks.com/topic/8794-order-by-month-query/#findComment-32299 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.