I just have one little question:
I know how to do to print every row in a vertical order, but what if I want to have, for example, 4 images in a table row, each one in its own column, and when 4 images have been collected from the database and printed on the page, I want the script to add a new row, and so on. How should I do?!
If this wasn't good enough, here's just a little example to show what I mean:
<html>
<head>
<title>Test Page</title>
</head>
<body>
<table border="1">
<tr>
<!-- Four images in its own <td></td>, and then -->
</tr>
<!-- and a new row... Is this possible? -->
</table>
</body>
<html>