i am using a directory listing and it works fine but it's the adding pages bit. I've looked everywhere for it but nothing works. here my code:
<?php
if ($handle = opendir('./upload')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo '<div class="img"><a href ="upload/'.$file.'"><img src="upload/'.$file.'" height="100" width="100" border=0></a></div>';
}
}
}
?>
please could somebody help me!