Jump to content

Recommended Posts

This is my query:

$gallery=mysql_fetch_assoc(mysql_query("SELECT a.id,a.name,g.artistid,g.specialityid,g.pics,s.id,s.name AS sname,s.prefix FROM artists a, artist_galleries g, specialities s WHERE a.id = '".$intArtistID."' AND a.id = g.artistid AND g.artistid = a.id AND s.id = '".$intGalleryID."' AND g.specialityid = s.id"));

This query when run in phpMyAdmin gives me exactly what I want but extracting it within PHP is proving to be impossible.

 

My value returned is not what I'm expecting so I'm trying this:

foreach ($gallery as $key => $value) {
  echo $key.'='.$value.'<br />';
}

 

All I'm getting is this:

Warning: Invalid argument supplied for foreach() in /home/trent/public_html/artistgallery.php on line 8

Link to comment
https://forums.phpfreaks.com/topic/137908-solved-foreach-query/
Share on other sites

Seems my query is returning only "1" - a count() of $gallery returns 1.

 

Any idea why PHP is giving me a number instead of an array containing my data? phpMyAdmin seems to work perfectly fine!

Yes, it's not returning a number, it's returning a boolean true indicating that it was successful.

Don't try to combine statements when they can return multiple results

 

$result = mysql_query("SELECT ..."));
while (mysql_fetch_assoc($result)) {
   // do something
}

Link to comment
https://forums.phpfreaks.com/topic/137908-solved-foreach-query/#findComment-720780
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.