I am using this code to call all the images from a folder:
$handle = opendir(dirname(realpath(__FILE__)).'/images/');
while($file = readdir($handle)){
if($file !== '.' && $file !== '..'){
echo '<img src="admin/img/uploads/'.$file.'" border="0" />';
}
}
The html says that the images are present but they aren’t visable on screen:
[code]
Any help is much appreciated!