Jump to content

Recommended Posts

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];

Link to comment
https://forums.phpfreaks.com/topic/177422-solved-determine-number-of-records/
Share on other sites

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";
?>

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

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.