Jump to content

Simply returning if a MySQL query is a valid resource...


cgm225

Recommended Posts

I perform the query below to check if a specific row/entry is present.  However, I have found that this only works if there is an entry present.  If there is no entry, I get the error message "Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /web/example.com/includes/php/test.inc.php on line 13."

 

Therefore, my question is, what is the best way to simply check if a query returned any results? and then output that to a TRUE or FALSE?  Restated, how do I check if a query has returned a valid MySQL result (regardless of what the query contains)?

 

    $query = "SELECT * FROM permissions WHERE username = '$username' AND permission = '$permission'";
    $permission_results = mysql_query($query);

    while($row = mysql_fetch_array($permission_results)) {
        echo "Entry present!";}

 

Thank you all in advance!

Link to comment
Share on other sites

Finding zero rows shouldn't give an error (false result) ???

 

But if you just want to know if it's there try

<?php
$query = "SELECT COUNT(*) FROM permissions WHERE username = '$username' AND permission = '$permission'";
    $permission_results = mysql_query($query);
$has_permission = mysql_result($permission_results, 0) > 0;

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.