

<?php include ('top.txt');?>

<span style="font-size: 16px; color: #006699"><b>Photo Gallery</b></span><br><br>

Below are some photos from some of our church-related activities!
<br><br><br>


<?php 

$num = 1;

print "<center>";

if ($handle = opendir('./fileupload/photos')) {
    while (false !== ($file = readdir($handle))) { 
        if ($file != "." && $file != "..") { 
           
$filestring = $file; 

print "<img src='fileupload/photos/" . $file . "'>";

$filestring = str_replace(".gif", "", "$filestring");

print "<br>" . $filestring . "<br><br><br>";

        } 
    }
    closedir($handle); 

}

print "</center>";

?>





</ul>


<?php include ('bottom.txt');?>
