srhino Posted September 12, 2013 Share Posted September 12, 2013 I am new and trying to figure out a way to take my records from the data base and display 4 to a row instead of just one record at a time... Here is the code I am working with. $query = "select * from products"; $result = mysql_query($query); echo "<table width=\"100%\" border=\"0\" align=\"center\">\n"; while($row=mysql_fetch_array($result, MYSQL_ASSOC)) { $prodid = $row['prodid']; $description = $row['description']; $price = $row['price']; $quantity = $row['quantity']; echo "<tr><td align = \"center\">\n"; echo "<tr><td><img src=\"showimage.php?id=$prodid\" width=\"80\" height = \"80\">\n</br>"; echo "<a href=\"updatecart.inc.php?id=$prodid\"> $description </a>" ; echo "</td></tr>\n"; } echo "</table>\n"; ?> I thank you in advance for your help. Link to comment https://forums.phpfreaks.com/topic/282106-showing-multiple-records-in-a-row-from-mysql/ Share on other sites More sharing options...
vinny42 Posted September 12, 2013 Share Posted September 12, 2013 So you are wondering how to make the </tr> tag appear only once every four records? How about a variable that counts to four? :-) Link to comment https://forums.phpfreaks.com/topic/282106-showing-multiple-records-in-a-row-from-mysql/#findComment-1449268 Share on other sites More sharing options...
srhino Posted September 12, 2013 Author Share Posted September 12, 2013 Yeah I assume that would be the correct way...I just don't know how to do that... I want 4 records to show on one TR and then 4 more on the next TR and so on... How would I make a variable out of the incoming rows? Link to comment https://forums.phpfreaks.com/topic/282106-showing-multiple-records-in-a-row-from-mysql/#findComment-1449270 Share on other sites More sharing options...
mikosiko Posted September 12, 2013 Share Posted September 12, 2013 Did you look on the Sticky folders ?... per example: http://forums.phpfreaks.com/forum/32-faqcode-snippet-repository/ or make a search? this topic has been discussed many...many times before and several times solutions has been posted. Link to comment https://forums.phpfreaks.com/topic/282106-showing-multiple-records-in-a-row-from-mysql/#findComment-1449272 Share on other sites More sharing options...
srhino Posted September 12, 2013 Author Share Posted September 12, 2013 Thanks...I will look there! Link to comment https://forums.phpfreaks.com/topic/282106-showing-multiple-records-in-a-row-from-mysql/#findComment-1449274 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.