<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>mon site</title>
<link href="styles.css" rel="stylesheet"
type="text/css">
</head>
<body style="color: rgb(0, 0, 0);" alink="#ee0000"
link="#0000ee" vlink="#551a8b">
<div class="head1">
<img src="logo.jpg" class="logo" alt="logo"></div>
<div class="head2">
<?php $date = date("d-m-Y" ); $heure = date("H:i" ); Print("Nous sommes le $date" ); ?></div>
<br>
<ul class="menu">
<li style="font-weight: bold;"><a
href="test.php?page=accueil">ACCUEIL</a></li>
<li style="background-color: rgb(255, 153, 0);"><big>Chiffres
et produits</big></li>
<li><a href="test.php?page=chiffres">Chiffres</a></li>
<li><a href="test.php?page=produits">Produits</a></li>
<li><a href="test.php?page=divers">divers</a></li>
<li style="background-color: rgb(255, 153, 0);"><big>Ressources</big></li>
<li><a href="annuaire/liste.php">Annuaire</a></li>
<li>Modèles documents</li>
<li style="background-color: rgb(255, 153, 0);"><big>Aide</big></li>
<li style="background-color: rgb(255, 153, 0);"><big>Divers</big></li>
<li>Photos évènements</li>
</ul>
<div class="centre">
<?php if (!isset($_GET['page'])) $page= 'accueil'; else $page= $_GET['page']; switch($page) { case 'accueil': include ('accueil.php');break; case 'chiffres': include ('chiffres.php');break; case 'divers':include ('divers.php');break; case 'produits':include ('produits.php');break; case 'photos':include ('photos.php');break;} ?></div>
</body>
</html>
|