include ("smd-header.html");
$path = '/home/u1/shanemcd/html/thumbs';
//echo "Current directory is " . getcwd();
echo "Picture Gallery
\n";
echo "
\n";
$col=0;
$dir_handle = @opendir($path) or die("Unable to open $path");
while($file = readdir($dir_handle))
{
if (substr($file, -3) == 'jpg')
{
if ($col==0)
{
echo "";
}
echo " | \n";
$col++;
if ($col==3)
{
$col=0;
echo "
\n";
}
}
}
closedir($dir_handle);
if ($col>0)
{
echo "\n";
}
echo "
";
include ("smd-footer.html");
?>