Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to retrieve multiple rows from joining two tables where store.itemid = item_list.id.

$query = "SELECT s.price, il.*  
    FROM store s LEFT JOIN item_list il ON s.itemid = il.id";

I then have:

if($result = $conn->($query)) {
    $array = $result->fetch_array(MYSQLI_ASSOC); 
    }

With my current code, the query is only retrieving the first row from the 'store' table. I have made certain that there should definitely be more than one row to return.

print_r($array) shows:

Array ( [price] => 400 [id] => 5 [name] => Computer ) 
share|improve this question
When you are doing print_r($array); is there more then one result in the array ? – Vince V. Jul 30 '11 at 20:59
No, there's only one result. I'll update post to show result. – Alper Jul 30 '11 at 21:04

2 Answers

up vote 5 down vote accepted

That's because you are only running fetch_array() once. You probably need to run it in a loop, e.g.:

if ($result = $conn->query($query)) {
    while ($array = $result->fetch_array(MYSQLI_ASSOC)) {
        // do something with $array
    }
}
share|improve this answer
while ($row = mysql_fetch_array($result, MYSQLI_ASSOC)) ... – Jens Struwe Jul 30 '11 at 20:54
i did not see your code first. so i thought i give a small example in addition. you are very right! – Jens Struwe Jul 30 '11 at 20:57
Thanks! You were very right. I've never had to loop through a mysql query before. – Alper Jul 30 '11 at 21:07

instead of this:

$array = $result->fetch_array(MYSQLI_ASSOC); 

use this:

while($row = $result->fetch_array(MYSQLI_ASSOC)){
 //put your code here!
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.