DavidBaumhauer
Mitglied
EDIT2: Ich habs jetzt raus
Oben die Links, und unten wird dann das eingebunden, das ich will
Danke trotzdem für eure Hilfe!
Tschau David
PHP:
<html>
<a href="index.php?go=home">Home</a><br>
<a href="index.php?go=links">Links</a><br>
<a href="index.php?go=downloads">Downloads</a><br>
<?php
if (isset($_GET['go']))
{
switch($_GET['go'])
{
case 'home': include('home.php');
break;
case 'links': include('links.php');
break;
case 'downloads': include('downloads.php');
break;
default: include('index.php');
}
}
?>
Oben die Links, und unten wird dann das eingebunden, das ich will
Danke trotzdem für eure Hilfe!
Tschau David
Zuletzt bearbeitet: