Ciao a tutti, come faccio a escludere dei file/cartelle prese da opendir? Non mi funziona! =(
Grazie mille! ^^"Codice PHP:
$o = opendir("album/");
$list = array(".","..","index.html");
while($r = readdir($o)) {
if(!in_array($list,$r)) {
echo $r."<br>";
}
}
closedir($o);