PHP expert |
|
als je rechts klikt en je bekijkt de bron, dan eindigt de pagina niet
het stopt bij <br /><br />
hij sluit tr en table enzo niet af
ik begrijp niet waarom...
<html>
<head>
<link rel="stylesheet" href="{style}.css" type="text/css">
<title>{title}</title>
</head>
<body>
<center>
<table>
<tr>
<td colspan="2" align="center" height="100">
{header_text}
</td>
</tr>
<tr>
<td class="menu">
<!-- START BLOCK : menu -->
<!-- START BLOCK : menu_cat_block -->
{menu_cat}<br />
<!-- START BLOCK : menu_part_block -->
- {menu_part} <br />
<!-- END BLOCK : menu_part_block -->
<!-- END BLOCK : menu_cat_block -->
<!-- END BLOCK : menu -->
</td>
<td class="content">
<!-- START BLOCK : content_block -->
{content}<br /><br />
<!-- END BLOCK : content -->
</td>
</tr>
</table>
</center>
</body>
</html>
<html> <head> <link rel="stylesheet" href="{style}.css" type="text/css"> <title>{title}</title> </head> <body> <center> <table> <tr> <td colspan="2" align="center" height="100"> {header_text} </td> </tr> <tr> <td class="menu"> <!-- START BLOCK : menu --> <!-- START BLOCK : menu_cat_block --> {menu_cat}<br /> <!-- START BLOCK : menu_part_block --> - {menu_part} <br /> <!-- END BLOCK : menu_part_block --> <!-- END BLOCK : menu_cat_block --> <!-- END BLOCK : menu --> </td> <td class="content"> <!-- START BLOCK : content_block --> {content}<br /><br /> <!-- END BLOCK : content --> </td> </tr> </table> </center> </body> </html>
dit is mijn template, ik weet niet hoe het komt...
|