I have the following query:
$img_sub_qry = "SELECT * FROM images
JOIN imagsub ON images.image_id = imagsub.image_id
WHERE images.image_id IN ($thelist)";
The problem is that this query is populating a drop down box and I am getting double results. I only want the results from the images table but I need the JOIN in order to grab a column that only exists in the imagsub table. From FirePHP I can see the results from the images table coming through just fine but then it loops back and pulls the same results from imagsub and I don't need those results. I have tried "SELECT DISTINCT" to no avail. Can someone help me here. I am fairly new to PHP and this is the first time I have tried using IN.