08.02.2004, 13:41
der fehler liegt auch immer in include:
@ kickedinthehead: nö, funzt leider auch net
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="?goto=news">Link1</a></td></tr>
<tr><td><a href="?goto=downloads">Link2</a></td></tr>
</table>
<!-- Linke Tabelle ende -->
</td>
<td width="20">
</td>
<td bgcolor="#33CCFF" width="600">
<?php
switch($goto) {
case "news":
$path = "\"news.html\"";
case "downloads":
$path = "\"news.html\"";
}
include($path); // <----- Warning: main(): Failed opening '' for inclusion (include_path='.;c:\php4\pear') in d:\justus\htdocs\test\h.php on line 37
?>
</td>
</table>
</body>
</html>
@ kickedinthehead: nö, funzt leider auch net