PHP Code:
<?php
$handle = opendir ('./');
while (false !== ($file = readdir($handle))) {
echo '<center><img src="'.$file.'"/><br />'.$file.'<br/></center>';
}
?>
Hope this is usefull.
It displays Images Automatically which exist in the current Directory!
Easy to Use!
Working Fine!
Cheers ;)
Comment