mraza Posted October 9, 2009 Share Posted October 9, 2009 Hi Team again me @ sorry if i am asking many things because i am in learning process and trying to do all practically now i am building a shopping cart site and mostly i need help here , now my problem is i i have created a layout for my books to show on my homepage. The problem is here let me show the code : <?php foreach($products as $product): ?> <div class="product"> <table width="630"> <tr><td> <table border="1" width="300px"> <tr> <th rowspan="2"><?php echo $product['image']; ?></th> <td><?php echo $product['body']; ?></td> </tr> <tr> <td><?php echo $product['title'] ?> - $<?php echo number_format($product['price'], 2) ?></td> </tr> </table> </td><td> <table border="1" width="300px"> <tr> <th rowspan="2"><?php echo $product['image']; ?></th> <td><?php echo $product['body']; ?></td> </tr> <tr> <td><?php echo $product['title'] ?> - $<?php echo number_format($product['price'], 2) ?></td> </tr> </table> </td></tr> </table> <p><a href="index.php?view=add_to_cart&id=<?php echo $product['id']; ?>">Add to Cart</a></p> </div> <?php endforeach; ?> you notice i have two tables with same data, in fact i am trying to display two tables, one one left and one on right. now the problem is both have the same books and details. is it possible to display only one time the same book but with two table at left and right. now if i use this : <?php foreach($products as $product): ?> <div class="product"> <table border="1" width="300px"> <tr> <th rowspan="2"><?php echo $product['image']; ?></th> <td><?php echo $product['body']; ?></td> </tr> <tr> <td><?php echo $product['title'] ?> - $<?php echo number_format($product['price'], 2) ?></td> </tr> </table> <p><a href="index.php?view=add_to_cart&id=<?php echo $product['id']; ?>">Add to Cart</a></p> </div> <?php endforeach; ?> i am getting one table going top to bottom but i wants the first style, hope you got my point. thanks again for all your support guys you help me a lot. Link to comment https://forums.phpfreaks.com/topic/177034-database-drive-table/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.