May i reccomend something....
PHP Code:
if ($file == "." || $file == ".." || $file == "index.htm" || $file == "CVS") {
} else {
Change to this
PHP Code:
if ($file != "." || $file != ".." || $file != "index.htm" || $file != "CVS") {
$bild = "./images/banners/$file";
$info = getimagesize($bild);
$id = filesize($bild);
.......
.......
}
ALSO
Why am i getting a blank page? Really wierd.