<?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>
