Onbekend |
|
<?php $pagina = $_GET['pagina']; ?>
<html>
...
<body>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><?php include("header.inc.php"); ?></td>
</tr>
<tr>
<td><?php include("links.inc.php"); ?></td>
<td><?php include($pagina . ".php"); ?></td>
<td><?php include("rechts.inc.php"); ?></td>
</tr>
<tr>
<td><?php include("footer.inc.php"); ?></td>
</tr>
</table>
</body>
</html>
<?php $pagina = $_GET['pagina']; ?> <html> ... <body> <table border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="3"><?php include("header.inc.php"); ?></td> </tr> <tr> <td><?php include("links.inc.php"); ?></td> <td><?php include($pagina . ".php"); ?></td> <td><?php include("rechts.inc.php"); ?></td> </tr> <tr> <td><?php include("footer.inc.php"); ?></td> </tr> </table> </body> </html>
Een standaard layout 3*3 vakken met header cols 3, footer cols 3, een menu links en rechts, en in het midden de variabele pagina.
<?php include("$page.php"); ?>
<?php include("$page.php"); ?>
Als je later problemen krijgt met het eerste script, gebruik dan het bovenstaande |