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 41 42 43 44
| <?php
session_start();
include_once('session.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Page d'accueil</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head> <body>
<div id="wrap">
<div class="en-tete">
<?php include 'en-tete/en-tete.php';?>
</div>
<div class="menu">
<?php include_once('menu/menu.php');?>
</div>
<div class="menu_gauche">
<?php require_once 'jeteste.php';
include 'menu_gauche/recherche.php';?>
</div>
<div class="corps">
<?php
$id = $_GET["id"];
static $bool;
include 'tri.php';
include_once 'affichage.php'; ?>
</div>
<div class="pied">
</div>
</div>
</body>
</html> |
Partager