Jump to content

[SOLVED] Date nightmare


kimgreenop

Recommended Posts

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

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

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.