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
|
<?php
include 'include/logguer.php';
include 'include/db_connect.php';
if( isset( $_GET['page'] ) ) {$page=$_GET["page"];} else {$page="";}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<META HTTP-EQUIV="Content-Type" content="text/html;charset=utf-8" >
<META HTTP-EQUIV="CONTENT-LANGUAGE" CONTENT="French">
<META HTTP-EQUIV="VW96.OBJECT-TYPE" CONTENT="Homepage">
<?php include 'include/titre.php ?>
</head>
<body>
<a name="top"></a>
<center>
<table width="80%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" align="left">
<?php include 'include/menu.htm';
?>
</td>
</tr>
<tr>
<td align="center" valign="top">
<?php
if (($page=="index") || ($page=="")){ include 'include/main.php'; }
else { include 'include/'.$page.'.php'; }
?>
</td>
</tr>
<tr>
<td valign="top" align="left">
<?php include 'include/footer.php'; ?>
</td>
</tr>
</table>
</center>
</body>
</html> |