NEW_IN_JAVA
Grünschnabel
Hi
kriege folgende Fehlermeldung
Warning: main() [function.include]: Failed opening '' for inclusion (include_path='.:/usr/share/php')
Möchte eine Menü erstellen habe 2 Menüpunkte und darunter soll der Inhalt angezeigt werden
kriege folgende Fehlermeldung
Warning: main() [function.include]: Failed opening '' for inclusion (include_path='.:/usr/share/php')
Möchte eine Menü erstellen habe 2 Menüpunkte und darunter soll der Inhalt angezeigt werden
PHP:
.
.
<body>
<a href="index.php?action=auto" ><font color="#000000">Autos</font></a><br>
<a href="index.php?action=bike"><font color="#000000">Bikes</font></a><br>
.
.
<div id="Layer2">
<?php
include($content);
?>
</div>
<?php
switch ($_GET["action"])
{
case auto:
$content = "Auto.php";
break;
case bike:
$content = "Bike.php";
break;
}
?>
</body>