Folder
'.$d.' does not exist,
go back and try again');
while (false !== ($filename = readdir($dh))) {
if ( eregi("jpg",$filename) || eregi("swf", $filename) || eregi("flv", $filename)) {
$album_photos[] = $filename;
}
}
if (sizeof($album_photos) != 0)
{
?>
Add a New Album
To add a new album with the images found below, simply give it a name and click "Add Album". You will be able to edit this later.
The Following Files Were Found';
echo '
';
for($j = 0; $j < sizeof($album_photos); $j++) {
echo '- '.$album_photos[$j].'
';
}
echo '
';
}
else
{
echo '
No Jpegs Found in the '.$d.'/lg directory!
';
}
?>