Jump to content

Couting number of rows with a match


thefollower

Recommended Posts

Im trying work out how to do a count of how many rows have "userID" as "Session" (Session carries user id).

 

i got this so far:

 

$CountTotal = mysql_query("SELECT * FROM messages
				WHERE UserID='{$_SESSION['Current_User']}'");

 

obviously this will select all the messages in the UserID field but how do i just count the amount it found ?

Link to comment
https://forums.phpfreaks.com/topic/66025-couting-number-of-rows-with-a-match/
Share on other sites

i think i got the structure not quite correct can you take a look please?

 

$CountMessages = mysql_query("SELECT * FROM messages
			 WHERE UserID='{$_SESSION['Current_User']}'");

// Fetch the row from the database
if (!($Messagerow = mysql_fetch_assoc($CountMessages))) {
    echo "User not found!";
    exit;
}	

$TotalMessages = mysql_num_rows($Messagerow);

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.