Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my code. I am using while loop for fetching the records from databbase. There are more than 30 records in database and there is a field of user id and order number in the database table which is often same for number of records. But when i am printing this from database it will show only one order. The remaining order are not showing. In short when 10 clients orders any thing than it is showing only a single clients order and his personal info but the other 9 clients personal info and orders are not showing. Please help me.

<table border="1">
            <?php
                $obj = new DBConnection();
                $myquery = $obj->SelectRecord(array("*"),"book_info") or die(mysql_error());
                while($row=mysql_fetch_array($myquery)) {
                    $row["email_id"];
                    $row["fullname"];
                    $row["address"];
                    $row["cntact_through"];
                    $row["deliver_books"];
                    $row["requirements"];
                    $id = $row["user_id"]; ?>
                    <tr>
                    <td><?php echo $row['fullname']; ?></td>
                    <td><?php echo $row['email_id']; ?></td>
                    <td><?php echo $row['address']; ?></td>
                    <td><?php echo $row['cntact_through']; ?></td>
                    <td><?php echo $row['deliver_books']; ?></td>
                    <td><?php echo $row['requirements']; ?></td>
                    </tr>
                    <?php
                $condition = "WHERE order_num = '$id'";
                $myquery = $obj->SelectRecord(array("*"),"book_info","$condition") or die(mysql_error());
                while($row=mysql_fetch_array($myquery)) { ?>
                    <tr>
                    <td><?php echo $row['book_name']; ?></td>
                    <td><?php echo $row['quantity']; ?></td>
                    <td><?php echo $row['author_name']; ?></td>
                    <td><?php echo $row['order_num']; ?></td>
                    </tr>
                <?php }} ?>
            </table> 
share|improve this question
1  
Please, don't use mysql_* functions in new code. They are no longer maintained and the deprecation process has begun on it. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – NullPoiиteя Oct 30 '12 at 16:02
also i think the query in loop is not good practice – NullPoiиteя Oct 30 '12 at 16:03

closed as too localized by deceze, markus, tombom, Martin Buberl, gimpf Oct 30 '12 at 17:35

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

You are using the $row variable in both the inner and outer while loops. Try using a different variable.

share|improve this answer
1  
Not only that, but he's also overwriting the $myquery object.. – Joost Oct 30 '12 at 16:07
@Joost this is also a point ...:) – NullPoiиteя Oct 30 '12 at 16:10
Hi this is useful but there is an issue remaining in it. Now it is showing every record twice times. I mean every order. – Zain Abid Oct 30 '12 at 16:14
@user1770374 you are not using anything from the outer loop in inner loop then why dont you pull out this from outer loop – NullPoiиteя Oct 30 '12 at 16:18
I am using user id from outer loop – Zain Abid Oct 30 '12 at 16:21

There's really a bunch of stuff in this code that makes little sense.. Did you write it yourself, or paste bits and pieces together? Do you know what it all means?

To start you off..

  • There's a loop in your loop. Are you sure this is what you're looking for?
  • You're overwriting the $row and $myquery variables inside your loop, messing with the iteration
  • You're a method called SelectRecord, which, by the looks for it, only fetches a single record.. Try using the default API that PHP offers - it's sufficient for these things
  • For new code, try using the Mysqli API. The older version is deprecated.

I strongly suggest you follow a couple tutorials on using MySqli with PHP. Have a look at examples like this one and edit them to fit your needs. Start off slowly and progressively add stuff to your script. That way, when you're not getting something, you could try and ask specific questions rather than pasting a bunch of lines with a massive questionmark and complete confusion.

share|improve this answer

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