index.php?section=neu

z0oL

Erfahrenes Mitglied
Hi, hab mir grade mal das Tut von mannita dazu angeschaut, aber irgendwie scheine ich aufm schlauch zu stehen.

Wie genau muss die index.php ausssehen ?

Ich hab im moment nur folgendes drin:
PHP:
<?php
if($section =='neu'){
    include 'neu.php';     //index.php?section=neu
}
if($section =='alt'){
    include 'alt.php';     //index.php?section=alt
}
//usw. halt!
?>

Zum testen halt... leider passiert nix.

Danke im Vorraus
 
Also, entweder du benutzt elseif oder einen Switch, außerdem besteht die Möglichkeit, dass bei dir register_globals = off ist, also schau das am besten mal in deiner php.ini nach...

PHP:
<?php
$section = $_GET['section'];

if($section =='neu'){
    include 'neu.php';     //index.php?section=neu
}
elseif($section =='alt'){
    include 'alt.php';     //index.php?section=alt
}
//usw. halt!


// Oder:
$section = $_GET['section'];
switch($section) {
  case "neu":
  include("neu.php");
  break;
  case "alt":
  include("alt.php");
  break;
}
?>

Have Fun
 
Zurück