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>

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