Onbekend |
|
ik heb een index gemaakt waarbij als je ingelogd bent hij index-v1.php weergeeft en anders een stukje template, maar ik blijf zitten met errors en weet niet meer welke het is, ik heb de vorige allemaal verholpen maar deze weet ik niet, ik hoop dat jullie hem weten
<?php
include("_include-config.php");
if($data) {
include("index-v1.php");
}
else {
echo"
<html>
<head>
<title>index</title>
</head>
<body bgcolor=#333333 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>
<table width=600 height=400 border=0 cellpadding=0 cellspacing=0>
<tr>
<td colspan=3>
<img src=images/index_01.gif width=600 height=297 alt=></td>
</tr>
<tr>
<td rowspan=2>
<img src=images/index_02.gif width=233 height=103 alt=></td>
<td>
<iframe src=login.php width=355 height=70 frameborder=0 scrolling=auto><img src=images/login.gif width=355 height=70 alt=></iframe></td>
<td rowspan=2>
<img src=images/index_04.gif width=12 height=103 alt=></td>
</tr>
<tr>
<td>
<img src=images/index_05.gif width=355 height=33 alt=></td>
</tr>
</table>
</body>
</html>
}
"
?>
<?php include("_include-config.php"); if($data) { include("index-v1.php"); } else { <html> <head> <title>index</title> </head> <body bgcolor=#333333 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0> <table width=600 height=400 border=0 cellpadding=0 cellspacing=0> <tr> <td colspan=3> <img src=images/index_01.gif width=600 height=297 alt=></td> </tr> <tr> <td rowspan=2> <img src=images/index_02.gif width=233 height=103 alt=></td> <td> <iframe src=login.php width=355 height=70 frameborder=0 scrolling=auto><img src=images/login.gif width=355 height=70 alt=></iframe></td> <td rowspan=2> <img src=images/index_04.gif width=12 height=103 alt=></td> </tr> <tr> <td> <img src=images/index_05.gif width=355 height=33 alt=></td> </tr> </table> </body> </html> } " ?>
EDIT: dit is de error
Parse error: parse error, unexpected $ in /home2/mats/public_html/counter-terrors/index.php on line 37
Parse error: parse error, unexpected $ in /home2/mats/public_html/counter-terrors/index.php on line 37
|