ayok Posted August 6, 2007 Share Posted August 6, 2007 Hi, I have some pictures in database and I want to show it on my webpage. The problem is, I want to make those pictures are shown on a table with 3 or 5 columns before new rows. For example, I insert this code <?php while ($data = mysql_fetch_array($show){ echo"<table> echo"<tr><td><img src='$url/thumbnails/$data[image]'></td></tr></table>"; to show the pictures from database, the pictures will be shown vertically with only one columns. Could anybody tell me how to get some columns before new row? I hope you understand my question. I have no idea how to find the keywords for googling. thanks, ayok Link to comment https://forums.phpfreaks.com/topic/63620-solved-how-to-make-tables-columns/ Share on other sites More sharing options...
Barand Posted August 6, 2007 Share Posted August 6, 2007 sample code <?php include 'db.php'; define ("NUMCOLS",5); $res = mysql_query("SELECT col1, col2 FROM mytable"); $count = 0; echo "<TABLE border=1>"; while (list($col1, $col2) = mysql_fetch_row($res)) { if ($count % NUMCOLS == 0) echo "<TR>\n"; # new row echo "<TD>$col1<br>$col2</TD>\n"; $count++; if ($count % NUMCOLS == 0) echo "</TR>\n"; # end row } # end row if not already ended if ($count % NUMCOLS != 0) { while ($count++ % NUMCOLS) echo "<td> </td>"; echo "</TR>\n"; } echo "</TABLE>"; ?> Link to comment https://forums.phpfreaks.com/topic/63620-solved-how-to-make-tables-columns/#findComment-317021 Share on other sites More sharing options...
ayok Posted August 7, 2007 Author Share Posted August 7, 2007 Hey Barand, thanks! It works perfectly. cheers, ayok Link to comment https://forums.phpfreaks.com/topic/63620-solved-how-to-make-tables-columns/#findComment-317374 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.