achso...
wie du vl an meiner index.php erkennen kannst handelt es sich hierbei um eine php-datei.
hier is mal die seite mit dem php code:
PHP
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="100%" border="1">
<tr>
<td><div align="center">[url='index.php?prim=1']Hauptthema 1[/url]</div></td>
<td><div align="center">[url='index.php?prim=2']Hauptthema 2[/url]</div></td>
<td><div align="center">[url='index.php?prim=3']Hauptthema 3[/url]</div></td>
</tr>
</table>
<table width="100%" border="1">
<tr>
<td><div align="center"><?php
switch ($_GET["prim"]) {
case 1:
echo '[url='index.php?id=11&prim=1']Nebenthema 1 zu Hauptthema 1[/url]';
break;
case 2:
echo '[url='index.php?id=21&prim=2']Nebenthema 1 zu Hauptthema 2[/url]';
break;
case 3:
echo '[url='index.php?id=31&prim=3']Nebenthema 1 zu Hauptthema 3[/url]';
break;
}
?></div></td>
<td><div align="center"><?php
switch ($_GET["prim"]) {
case 1:
echo '[url='index.php?id=12&prim=1']Nebenthema 2 zu Hauptthema 1[/url]';
break;
case 2:
echo '[url='index.php?id=22&prim=2']Nebenthema 2 zu Hauptthema 2[/url]';
break;
case 3:
echo '[url='index.php?id=32&prim=3']Nebenthema 2 zu Hauptthema 3[/url]';
break;
}
?></div></td>
</tr>
</table>
<table width="100%" height="607" border="0" style="border:1px solid #000000">
<tr>
<td><div align="center">
<?php
switch ($_GET["id"]) {
case 11:
include("11.html");
break;
case 21:
include("21.html");
break;
case 31:
include("31.html");
break;
case 12:
include("12.html");
break;
case 22:
include("22.html");
break;
case 32:
include("32.html");
break;
}
?>
</div></td>
</tr>
</table>
</body>
</html>
Alles anzeigen
meinst kannst du damit was anfangen?