Jump to content

changing PHP num_rows method to SQL COUNT


paddy_fields
Go to solution Solved by mac_gyver,

Recommended Posts

Hi. I was using the method below to count the rows in a table, but I've since learnt I should be using SQL Count.

 

Old method....

//total number of jobs
if ($result = $db->query("SELECT * FROM jobBoard")) {
$totalJobCount = $result->num_rows;
$result->close();
echo $totalJobCount;
}   

I've now changed this to....

//total number of jobs
if ($result = $db->query("SELECT count(*) AS jobCount FROM jobBoard")) {
$findCount = $result->fetch_assoc();
$totalJobCount = $findCount['jobCount'];
$result->close();
echo $totalJobCount;
}   

Is my new method the best way of doing this? It provides the correct result but I'm new to mysqli and I'm not sure if fetch_assoc() is the right way to go?

 

Thanks.

Pat.

Edited by paddyfields
Link to comment
Share on other sites

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.