Anderer Lösungsansatz:
PHP-Code:
<?
switch($_GET['section']) {
case "a": include('a.php'); break; #Wenn section=a, tu xy und "brich ab"
case "b": include('b.php'); break;
case "c": include('c.php'); break;
default: include('a.php'); #Wenn section nicht gesetzt bzw. section nicht a,b oder c (in diesem Bspl.)
}
?>
Kommentar