PHP interesse |
|
<?php
$paginas = array("_notes", ".", "..", "home.php", "medewerkers.php", "artiesten.php", "contact.php", "agenda.php", "reports.php", "pictures.php", "gastenboek.php", "chatbox.php", "forum.php");
if ($handle = opendir('../docs/')) {
while (false!==($file = readdir($handle))) {
if (!in_array($file, $paginas)) {
echo '<a href="?pagina=paginas/bewerken&p='.$file.'">'.$file.'</a><br/>';
}
}
closedir($handle);
}
?>
<?php $paginas = array("_notes", ".", "..", "home.php", "medewerkers.php", "artiesten.php", "contact.php", "agenda.php", "reports.php", "pictures.php", "gastenboek.php", "chatbox.php", "forum.php"); if ($handle = opendir('../docs/')) { while (false!==($file = readdir($handle))) { echo '<a href="?pagina=paginas/bewerken&p='.$file.'">'.$file.'</a><br/>'; } } } ?>
|