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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Gestion de Base</title>
</head>
<body style="margin-top:"0px;">
<table width="1000" height:auto border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td height="150" colspan="2" valign="top" bgcolor="#677E52"><?php include('page_logo.php');?></td>
</tr>
<tr>
<td width="150" height="600" valign="top" bgcolor="#B0CC99"><?php include('page_menu.php');?></td>
<td width="850" valign="top" bgcolor="#EEEEC6">
<?php
switch (@$_GET['page'])
{
case 'Accueil': include('accueil.php');break;
case 'Saisie': include('saisie.php');break;
case 'Visu_tableau': include('visu_tableau.php');break;
//case 'Modif_saisie': include('Modif_saisie.php');break;
case 'Login': include('Login.php');break;
default : include('accueil.php');break;
}
?>
</td>
</tr>
<tr>
<td height="50" colspan="2" valign="top" bgcolor="#677E52"> </td>
</tr>
</table>
</body>
</html> |