include.php:come mai mostra al broswer il source e nonCodice PHP:
<?
$path = '.'; // '.' for current
foreach (new DirectoryIterator($path) as $file) {
if ($file->isDot()) continue;
if ($file->isDir()) {
$dir=$file->getFilename();
echo '<a href="/category/'.$dir.'">'.ucfirst($dir).'</a><br>';
}
}
?>
come viene mostrato se apro direttamente include.php?Codice HTML:<a href="/category/loli">Loli</a><br>
Grazie,
Hen-tai.