Jump to content

Recommended Posts

Hey Guys,

I'm going mad - why is this generating no record found.

    $id = $_GET["id"];
    $table_name="tbl123";
   
    $rows = $wpdb->get_results("SELECT * FROM $table_name WHERE photo_id = $id");

    if ($rows->num_rows > 0) {
        foreach ($rows as $row) {
        echo "<img src='.$photo_dir.$row->photo_id.' class='zoom'>";
        }
    } else {
        echo "<h2>Error:</h2>Please check the Image Reference and enter again.";
    }

but if I go in to phpmyadmin and do a direct sql search for this, I see 1 record...

SELECT * FROM `tbl123` WHERE `photo_id` = "1594" 

Why am I not getting anything returned?

Am I parsing something wrong?

 

Link to comment
https://forums.phpfreaks.com/topic/307201-basic-sql-error-help/
Share on other sites

When in doubt, read the documentation. Are you using get_results() correctly?

 

Ah! I was, but not....

 

it needed to be

SELECT * FROM $table_name WHERE photo_id = '$id'

Rookie mistake - I've been looking at code for about 9 hours now... might be time to walk away lol!

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.