PHP קוד:
<table>
<tr>
<?php
include "../../db.php";
$aaa = mysql_query("SELECT * FROM gallery");
$x = 0;
while($array = mysql_fetch_array($aaa)){
$x++;
echo "<td><a target=_blank href=".$array["pic"]."><img width=100 border=0 height=100 src=".$array["pic"]."></a><br/><a href='commitee_remove.php?id=".$array["id"]."'>מחק תמונה</a><br/><br/></td>";
if($x == 4) {
echo "</tr><tr>";
$x = 0;
}
}
?>
</tr>
</table>