Fejl i include
Hvorfor får jeg fejl her?http://www.team-dwc.dk/rulez.php
Kan ikke se noget usædvanlig i denne form får include.
Source:
<?php
include("include/config.php");
?>
<html>
<head>
<?php include("include/meta.php"); ?>
<title><?php echo"$title" ?> -> Rulez</title>
</head>
<body>
<table border="0" width="100%" height="100%">
<tr>
<td width="10%" height="19"><?php include("/include/left.php"); ?></td>
<td width="80%" height="19">
<table border="0" width="100%">
<tr>
<td width="80%"><?php
include("include/top.php");
?></td>
</tr>
<tr>
<td width="100%">
<table border="0" width="100%">
<tr>
<td width="8%"><?php
include("include/menu.php");
?></td>
<td width="33%">
Indhold
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="10%"><?php
include("include/right.php");
?></td>
</tr>
<tr>
<td width="10%"><?php
include("include/left2.php");
?></td>
<td width="80%" height="19" align="center" valign="bottom"><?php
include("include/bund.php");
?></td>
<td width="10%" height="100%"><?php
include("include/right2.php");
?></td>
</tr>
</table>
</body>
</html>