jeff5656 Posted October 12, 2009 Share Posted October 12, 2009 This is a really basic question but how do I add to this code the total number of records that match this query. I know I need to use msql_num_rows () but don't know what I'm supposed to put in the (): $query = "SELECT COUNT(*) as num FROM gpu WHERE signoff_status = '$so' AND `service` = '". $service ."' "; $total_pages = mysql_fetch_array(mysql_query($query)); $total_pages = $total_pages[num]; Quote Link to comment https://forums.phpfreaks.com/topic/177422-solved-determine-number-of-records/ Share on other sites More sharing options...
JonnoTheDev Posted October 12, 2009 Share Posted October 12, 2009 As you are using a COUNT statement in your query your result will only contain 1 row so you are not to use mysql_num_rows() in this case. You are selecting the number of records, not the actual rows so you can display the result as follows: <?php $result = mysql_query("SELECT COUNT(*) as num FROM gpu WHERE signoff_status = '".$so."' AND `service` = '".$service."'"); $row = mysql_fetch_assoc($result); print "There are ".$row['num']." results"; ?> Quote Link to comment https://forums.phpfreaks.com/topic/177422-solved-determine-number-of-records/#findComment-935491 Share on other sites More sharing options...
kickstart Posted October 12, 2009 Share Posted October 12, 2009 Hi That will bring back a single record anyway. However, in theory:- $query = "SELECT COUNT(*) as num FROM gpu WHERE signoff_status = '$so' AND `service` = '". $service ."' "; $total_pages = mysql_fetch_array(mysql_query($query)); $CountOfRows = mysql_num_rows($total_pages); All the best Keith Quote Link to comment https://forums.phpfreaks.com/topic/177422-solved-determine-number-of-records/#findComment-935492 Share on other sites More sharing options...
JonnoTheDev Posted October 12, 2009 Share Posted October 12, 2009 kickstart, $CountOfRows will always be 1! SELECT COUNT() A count is a count, not a recordset. Quote Link to comment https://forums.phpfreaks.com/topic/177422-solved-determine-number-of-records/#findComment-935495 Share on other sites More sharing options...
kickstart Posted October 12, 2009 Share Posted October 12, 2009 Hi Neil I know, hence my comment above. Not sure he meant to use COUNT(*) rather than just *. All the best Keith Quote Link to comment https://forums.phpfreaks.com/topic/177422-solved-determine-number-of-records/#findComment-935497 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.