Jump to content

basic sql error help


totallytech

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
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.