aTa
Erfahrenes Mitglied
Hallo,
ich hab nun schon etwas nachgeschaut und bin auch schon fündig geworden. Hab dann auch gleich mal was versucht und würde nun gerne wissen ob man das so machen kann oder ob das total falsch ist bwz so ja mal gar nicht geht.
Danke schonmal!!
ich hab nun schon etwas nachgeschaut und bin auch schon fündig geworden. Hab dann auch gleich mal was versucht und würde nun gerne wissen ob man das so machen kann oder ob das total falsch ist bwz so ja mal gar nicht geht.
Danke schonmal!!
PHP:
<?php
echo '<a href="?action=one">one</a><br><a href="?action=two&id=subtwo">two</a><br>';
if( isset($action)) {
if ($action == "one"){
include 'one.php';
}
if ($action == "two" && $id == "subtwo"){
include 'test.php';
}
echo '<a href="?action=three">three</a><br>';
if ($action == "three"){
include 'three.php';
}
}
?>