twitch.php 476 B

123456789101112131415161718192021222324
  1. <?php
  2. include_once("includes/header.php");
  3. include_once("includes/nav.php");
  4. $a = array (
  5. 'overzicht' => 1,
  6. 'configuration' => 1,
  7. );
  8. if(isset($_GET["i"])){
  9. if($_GET["i"] == ""){
  10. @include('twitch/overzicht.php');
  11. }
  12. else{
  13. if(isset($a[$_GET["i"]])){
  14. @include('twitch/'.$_GET["i"].'.php');
  15. }else{
  16. echo '<h1>Deze pagina bestaat helaas niet.</h1>';
  17. }
  18. }
  19. }else{
  20. @include('twitch/overzicht.php');
  21. }
  22. include_once("includes/footer.php");
  23. ?>