thefollower Posted August 21, 2007 Share Posted August 21, 2007 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 ? Quote Link to comment https://forums.phpfreaks.com/topic/66025-couting-number-of-rows-with-a-match/ Share on other sites More sharing options...
nathanmaxsonadil Posted August 21, 2007 Share Posted August 21, 2007 $num_rows = mysql_num_rows($CountTotal); Quote Link to comment https://forums.phpfreaks.com/topic/66025-couting-number-of-rows-with-a-match/#findComment-330196 Share on other sites More sharing options...
thefollower Posted August 21, 2007 Author Share Posted August 21, 2007 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); Quote Link to comment https://forums.phpfreaks.com/topic/66025-couting-number-of-rows-with-a-match/#findComment-330209 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.