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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<title>Bienvenue sur le site Azuquita a.s.b.l.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="description" content="club de danses latines : salsa, bachata, merengue, chachacha">
<meta name="keywords" content="salsa, bachata, merengue, chacha, chachacha, cha cha cha, danse, latino">
<link rel="stylesheet" media="screen" type="text/css" title="Design" href="design.css" />
</head>
<body>
<!-- Tableau haut -->
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<!-- Logo -->
<td width="20%" valign="top">
<img src="../images/azuquito005.png">
</td>
<!-- Bannière -->
<td width="80%" hight="160"valign="center">
<center><img src="../images/azuquito003.jpg" height="160" width="468"></center>
</td>
</tr>
</table>
<!-- Tableau contenant le sommaire et la page central -->
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<!-- Sommaire -->
<td width="20%" valign="top">
<ul>
<li><a href="index.php?page=accueil">Accueil</a></li>
<li><a href="index.php?page=page1">Page 1</a></li>
<li><a href="index.php?page=page2">Page 2</a></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</td>
<!-- Cellule central ou seront affichées les pages -->
<td width="85%" valign="top" bgcolor="#00F01F">
<?php
if (!isset($page)) { // Vérfie si la variable $page est définie
$page = "accueil";
}
// On définit la variable $fichier
$fichier = $page.".php";
if (file_exists($fichier)) { // Vérifie si le fichier existe sur le serveur
include ($fichier); // On insère la page
}
// Sinon on affiche une page d'erreur
else {
include ("404.php");
}
?>
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" hight="20"valign="center">
<div>
<p><center><h2>met dank aan al onze medewerkers en wij wensen u een fijn 2010</h2></center></p>
</div>
</td>
</tr>
</table>
</body>
</html> |