Change:
while ($i < $num) {
$name2=mysql_result($result,$i,"maindir");
$photoa=mysql_result($result,$i,"maincont");
$path2 ="$name/$photoa";
echo '<table cols="2" border="0" cellpadding="10" cellspacing="0" align="center" width="100%">';
print "<td><a href=\"$path" . $path2 . "\"><img src=\"$path" . $path2 . "\" width=129 height=160></td><tr>";
$i++;
}
to:
echo '<table cols="2" border="0" cellpadding="10" cellspacing="0" align="center" width="100%"><tr>';
while ($i < $num) {
$name2=mysql_result($result,$i,"maindir");
$photoa=mysql_result($result,$i,"maincont");
$path2 ="$name/$photoa";
print "<td><a href=\"$path" . $path2 . "\"><img src=\"$path" . $path2 . "\" width=129 height=160>";
$i++;
}