Je moet ingelogd zijn om te stemmen.
<?php // http://url.be/?pagina=bla if ( isSet( $_GET['pagina'] ) ) { $sPad = './map/' . $_GET['pagina'] . '.php'; // bestaat bla.php in de directory map? if ( file_exists( $sPad ) ) { include( $sPad ); } else echo 'Het bestand bestaat niet'; } ?>
<?php // http://url.be/?pagina=bla if ( isSet( $_GET['pagina'] ) ) { $sPad = './map/' . $_GET['pagina'] . '.php'; // bestaat bla.php in de directory map? if ( file_exists( $sPad ) ) { include( $sPad ); } else echo 'Het bestand bestaat niet'; }?>