Nieuw lid |
|
<?php
switch($id) {
default:
include('nieuws.php');
break; case "klappervandeweek":
include('kvdw.php');
break; case "adverteren":
include('adverteren.php');
break; case "befree":
include('befree.php');
break; case "downloads":
include('downloads.php');
break; case "interviews":
include('interviews.php');
break; case "previews":
include('previews.php');
break; case "hardware":
include('hardware.php');
break; case "software":
include('software.php');
break; case "articles":
include('articles.php');
break; case "staff":
include('staff.php');
break; case "contact":
include('contact.php');
break; case "resume":
include('resume.php');
break; case "membersarea":
include('membersarea.php');
break; case "webhosting":
include('webhosting.php');
break; case "gamehosting":
include('gamehosting.php');
break; case "luister":
include('luisteren.php');
break; case "programering":
include('programering.php');
}
?>
<?php switch($id) { default: include('nieuws.php'); break; case "klappervandeweek": include('kvdw.php'); break; case "adverteren": include('adverteren.php'); break; case "befree": include('befree.php'); break; case "downloads": include('downloads.php'); break; case "interviews": include('interviews.php'); break; case "previews": include('previews.php'); break; case "hardware": include('hardware.php'); break; case "software": include('software.php'); break; case "articles": include('articles.php'); break; case "staff": include('staff.php'); break; case "contact": include('contact.php'); break; case "resume": include('resume.php'); break; case "membersarea": include('membersarea.php'); break; case "webhosting": include('webhosting.php'); break; case "gamehosting": include('gamehosting.php'); break; case "luister": include('luisteren.php'); break; case "programering": include('programering.php'); } ?>
Dit is mijn Script om te includen!
Het werkt heel goed, en ik gebruik het al jaren!
Nu wil ik dat het dubbel kan,
Bijvoorbeeld index.php?id=medewerkers?pagina=johandevrieze
En dat hij dat Johandevrieze.php invoegd
Het is maar een voorbeeld,
Wie weet hoe dat moet?
|