");
$size = sizeof($myarray);
$w = 40;
$columns_per_row = 2;
echo("| Photos |
");
echo("");
for ($i=0; $i<$size; $i++) {
if ($i % $columns_per_row == 0) {
echo("
");
}
$full = str_replace("_small", "", $myarray[$i]);
echo("".
"" .
" " .
"" .
" | ");
}
echo("
");
echo("");
$dir = opendir($path);
while ($file=readdir($dir)) {
echo "$file
";
}
?>