14226.jpg
254665_full.jpg
254666_full.jpg
ScreenShot008.jpg
ScreenShot046.jpg
menu.jpg
nfarena00003fy.jpg
modified from:
http://mgccl.com/2007/04/27/script-show-all-the-images-in-a-directory
$handle = opendir ('./');
while (false !== ($file = readdir($handle))) {
if($file != "." && $file != ".." && $file != basename(__FILE__)) {
echo ''.$file.'';
}
}