Hello,
$d = opendir("docs");
while (($file = readdir($d)) !== false) {
if (($file != ".") && ($file != "..")){
}
}
I want to be able to display the first 5 file names.
Here is the twist, I have a next button, which I want to display the next 5 filenames
Thanks Jean