Jump to content

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

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.