PHP interesse |
|
Heey mesne..
Ik had een kort vraagje..
Hoe kan je met dit script includen, ik weet wel hoe het moet, alleen ben ik nog te onervaren om het bij dit script te ondekken..
<?php
// PAGINA SCRIPTJE DOOR MATTHIAS TRIP
// © 2004 - 2005
// Dit script mag vrij gebruikt worden
// Maar mag niet zonder toestemming van de auteur op andere site's worden gepost!
$pagina = $_GET['pagina']; // bijv index.php?pagina=start.php
$standaard = 'start.php'; // Standaard pagina, als er geen ?pagina= in de url is gevonden
$verboden = array("config.php","index.php"); // Verboden pagina's
## FUNCTIE OM TE KIJKEN OF BESTAND BESTAAT ##
function bestaat_bestand($bestand)
{
if(file_exists($bestand))
{
include $bestand;
}
else
{
Print('Het bestand ('.$bestand.') bestaat niet!<BR>');
}
}
if(empty($pagina)) // Als er geen ?pagina= in de url is gevonden
{
bestaat_bestand($standaard); // controleren of bestand bestaat
}
else
{
if(in_array($pagina, $verboden))// Controleren of bestand is toegestaan
{
Echo'Dit bestand is niet toegestaan!';
}
else
{
bestaat_bestand($pagina); // Pagina laten zien
}
}
?>
<?php // PAGINA SCRIPTJE DOOR MATTHIAS TRIP // © 2004 - 2005 // Dit script mag vrij gebruikt worden // Maar mag niet zonder toestemming van de auteur op andere site's worden gepost! $pagina = $_GET['pagina']; // bijv index.php?pagina=start.php $standaard = 'start.php'; // Standaard pagina, als er geen ?pagina= in de url is gevonden $verboden = array("config.php","index.php"); // Verboden pagina's ## FUNCTIE OM TE KIJKEN OF BESTAND BESTAAT ## function bestaat_bestand($bestand) { { include $bestand; } else { Print('Het bestand ('.$bestand.') bestaat niet!<BR>'); } } if(empty($pagina)) // Als er geen ?pagina= in de url is gevonden { bestaat_bestand($standaard); // controleren of bestand bestaat } else { if(in_array($pagina, $verboden))// Controleren of bestand is toegestaan { Echo'Dit bestand is niet toegestaan!'; } else { bestaat_bestand($pagina); // Pagina laten zien } } ?>
bijvoorbeeld dit:
$aPagina[] = "programma";
$aPagina[] = "contact";
$aPagina[] = "solliciteren";
$aPagina[] = "programma"; $aPagina[] = "contact"; $aPagina[] = "solliciteren";
|