Ik heb een website gemaakt en ik wil als ik op een button in het menu klik
dat deze opent in een table. ik heb een aantal scripts geprobeerd maar elkekeer zeg ie : Parse error: parse error in /home/virtual/site110/fst/var/www/html/index.php on line 25
Ik snap niet waar het probleem zit, ik heb al gezocht op het forum voor een oplossing maar kon deze niet vinden.
Kan iemand mij helpen.????
Hier de code :
Alvast bedankt.!
dat deze opent in een table. ik heb een aantal scripts geprobeerd maar elkekeer zeg ie : Parse error: parse error in /home/virtual/site110/fst/var/www/html/index.php on line 25
Ik snap niet waar het probleem zit, ik heb al gezocht op het forum voor een oplossing maar kon deze niet vinden.
Kan iemand mij helpen.????
Hier de code :
PHP:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| <!doctype html public "-//w3c//dtd html 4.0 transitional//en"> <html> <head> <title>Niet van belang :)</title> <link rel="stylesheet" type="text/css" href="wireless.css"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head> <body text="#FF9900" link="#333333" vlink="#FF3300" alink="#0000FF"> <div align="center"> <table width="75%" border="1" bordercolor="#FF9900"> <tr> <td bordercolor="#FF9900" bgcolor="#FF9900"><img src="img/top.jpg" width="749" height="152"></td> </tr> <tr> <td height="21" bordercolor="#FF9900" bgcolor="#FF9900"><font color="#333333">Navigatie : <a href=index.php?pagina=home>Home</a> - <a href=index.php?pagina=nieuws>Nieuws</a></font></td> </tr> <tr> <td><table width="100%" border="0"> <tr> <td width="94%"> <?php if(!$pagina) { include("home.php"; } elseif(strstr($pagina,"admin" || strstr($pagina,"index" || strstr($pagina,"..") { include("404.php"; } elseif(file_exists("$pagina.php") { include("$pagina.php"; } elseif(file_exists("$pagina") { include("404.php"; } else { include("404.php"; } ?> </td> <td width="6%"> <br> <img src="sponsors/logo120-60.gif" width="120" height="60"></td> </tr> </table></td> </tr> <tr> <td height="33"><img src="img/bottom.png" width="750" height="29"></td> </tr> </table> </div> </body> </html> |
Alvast bedankt.!
[ Voor 25% gewijzigd door Kees op 18-10-2003 16:00 ]