Alright so here is my question, say you have the mysql results and you want to display it:
<?
#connect to db
mysql_connect("localhost", "xxx", "xxxx") or die("bad connection");
mysql_select_db("xxxxx") or die("bad mysql db");
$result = mysql_query("Select * from xxxx ORDER BY id DESC") or die("bad mysql query");
while($show = mysql_fetch_assoc($result)) {
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><? echo $show[thumbnail]; ?></td>
</tr>
</table>
<?
}
?>
so basically right now this information loops and displays the results in a row. But how do I have it display 4 times per row....so 4 columns/4 results in one row? and loop till its done displaying all the results.
Another example of what im trying to do is here:
http://youtube.com/browse?s=mp
I want to be able to display my information just like this page.