Jump to content

[SOLVED] What would be the code for this?


ballhogjoni

Recommended Posts

I am connecting to my DB table and then exporting that table info to excel. My question is, is there a function that will let me know if there are no records in my table? Something like

 

$no_records = mysql_num_rows($sql=0)

if ($no_records=0) {

echo "You have No Records";

}

Link to comment
Share on other sites

This is the code I have:

 

if (!mysql_num_rows($sql)) {

echo "You have No Records";

}

 

But I get this warning and the code still executes:

 

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource on line 16

You have No Records

Link to comment
Share on other sites

Then your query that produces the $sql (poor choice for variable name by the way) result is failing and your not checing it before using it.

 

We need to see more code. Specifically, the query that returns $sql.

Link to comment
Share on other sites

You need to actually execute the query. eg;

 

<?php

  $sql = "Select * from contact_n_questions";
  if ($result = mysql_query($sql)) {
    if (!mysql_num_rows($result)) {
      echo "You have No Records";
    }
  }

?>

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.