09.07.2003, 20:34
Schon älter das Thema, aber ich habe gemerkt das bei mir das "script" nicht geht. Nicht weil es falsch ist sondern weil bei mir kein super_globals an ist. Deshalb habe ich es umgeschrieben das es auch bei mir läuft. Und das wollte ich euch ja nicht vorbehalten )
PHP-Code:
<html>
<head>
<title>Weg mit den Frames ;-)</title>
</head>
<body link="#FFFFFF">
<table align="center" width="80%">
<tr>
<td>
<!-- Die Linke Seite, also wo das Menü ist -->
<table bgcolor="#33CCFF" border="1" bordercolor="#000000" width="250">
<tr><td><a href="?path=test1.php">Link1</a></td></tr>
<tr><td><a href="?path=test2.php">Link2</a></td></tr>
<tr><td><a href="?path=test3.php">Link3</a></td></tr>
<tr><td><a href="?path=test4.php">Link4</a></td></tr>
</table>
<!-- Linke Tabelle ende -->
</td>
<td width="20">
</td>
<td bgcolor="#33CCFF" width="600">
<?php
if(isset($_GET['path'])) {
include($_GET['path']);
} else {
?>
<!-- Hier kommt dann der ganz normale Startseitentext -->
Dies ist die Startseite
<?
}
?>
</td>
</table>
</body>
</html>