<html> <head> </head> <body> <table> <tr> <td colspan="2"><!-- Entete --></td> </tr> <tr> <td><!-- Menu gauche --></td> <td><!-- Zone principale --></td> </tr> <tr> <td colspan="2"><!-- Pied de page --></td> </tr> </table> </body> </html>
<h1>Mon site web a moi</h1>
Page 1<br/> Page 2<br /> etc..
(c) Moi <?php date("Y"); ?>
<?php // Includes et pré-traitements // ex: require_once(dirname(__FILE__)."/include_inc.php"); ?> <html> <head> </head> <body> <table width="100%"> <tr> <td colspan="2"> <?php include(dirname(__FILE__)."/include_entete.php");?> </td> </tr> <tr> <td> <?php include(dirname(__FILE__)."/include_menugauche.php");?> </td> <td> <?php // Affichage principal // ex: echo cube(3); ?> </td> </tr> <tr> <td colspan="2"> <?php include(dirname(__FILE__)."/include_pieddepage.php");?> </td> </tr> </table> </body> </html>