basitçe anlatayım...

<?php

echo "<table width=\"100%\" border=\"0\">
<tr>";
$sorgu = mysql_query("Sorgu kodları");
 while ($yaz = mysql_fetch_array($sorgu)) {
 $resim = $yaz['resim'];

 echo "<td><img src=\"$resim\" /></td>";
 $x = $x + 1;

 if ($x ==3) {

 echo "</tr><tr>";

 $x = 0;

 }


 }

echo "</tr></table>";

?>