kimgreenop Posted October 25, 2009 Share Posted October 25, 2009 Hi all, I'm having a date format nightmare. I have a database with a timestamp. Now all i want to do is pull up the information for the current month. //To get the current date $date1 = getdate(date("U")); $date1 = $date1[month]; $details = mysql_query("SELECT user.id AS usid, user.username, COUNT(comment.userid) AS userid, date('F', comment.date) AS dates FROM comment WHERE dates = $date1 JOIN user ON user.id = comment.userid GROUP BY userid I feel like I'm going completely the wrong and difficult path. Any help please. x Link to comment https://forums.phpfreaks.com/topic/178942-solved-date-nightmare/ Share on other sites More sharing options...
Mchl Posted October 25, 2009 Share Posted October 25, 2009 SELECT user.id AS usid, user.username, COUNT(comment.userid) AS userid, DATE_FORMAT(comment.date,'%M') AS dates FROM comment JOIN user ON user.id = comment.userid WHERE MONTH(comment.date) = MONTH(CURDATE()) GROUP BY usid Link to comment https://forums.phpfreaks.com/topic/178942-solved-date-nightmare/#findComment-944069 Share on other sites More sharing options...
kimgreenop Posted October 25, 2009 Author Share Posted October 25, 2009 Thank you so much!! xx Link to comment https://forums.phpfreaks.com/topic/178942-solved-date-nightmare/#findComment-944102 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.