Ferndown Drama Group
Ferndown Drama
Ferndown Drama Group
$entries = array();
$i = 0;
$location = './400';
$dp = opendir($location);
//echo $location;
while($entrys = readdir($dp)) {
//echo $entry;
if (is_dir($location . $entrys))
{
// echo '[DIR] ' . $entry . '
';
} else {
// else if (is_file($location . $entry)) {
if (($entrys != '..') and ($entrys != '.')) {
$entry[$i] = $entrys;
echo "";
//echo "";
$i = $i + 1;
}
}
}
closedir($dp);
echo "
";
//$entry[0] = '20110126-IMG_0604.jpg';
//$entry[1] = '20110126-IMG_0597.jpg';
//$entry[2] = '20110126-IMG_0600.jpg';
//$entry[3] = '20110126-IMG_0242.jpg';
?>