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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
<?php
session_start();
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Intranet</title>
<link href="texte_css.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
}
body {
background-color: #FFFFFF;
}
.Style1 {color: #FF0000}
-->
</style></head>
<?PHP
//Informations BDD, Hosts et autres
include ("bdd.php");
$lien=@$_GET["lien"];
?>
<body>
<table height="403" border="0" cellpadding="1" cellspacing="0">
<tr valign="bottom">
<td width="194" align="center" valign="middle"><p><img src="Pics/user.png" width="68" height="64"><br>
Connecté en tant que: <br>
<?php
echo '<span class="Style1">'.$_SESSION['user'].'</span>';
?>
</p>
<p><br>
</p></td>
<td width="6"> </td>
<td width="650" bordercolor="#000000"><table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="649" bordercolor="#294573"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="649" height="120">
<param name="movie" value="baniere.swf">
<param name="quality" value="high">
<embed src="baniere.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="649" height="120"></embed>
</object></td>
</tr>
</table></td>
</tr>
<tr valign="top">
<td><?php include("menu_gauche.php") ?> </td>
<td> </td>
<td><table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr valign="top" bgcolor="#294573">
<td height="16"> </td>
</tr>
<tr valign="top">
<td height="500" bgcolor="#FFFFFF" class="police_base">
<?php
//debut des pseudo-frames PHP Switch Case
switch ($lien) {
//Ressources-Humaines
case "in" :
include("./rh/in.php");
break;
case "out" :
include("./rh/out.php");
break;
case "mutation" :
include("./rh/mutation.php");
break;
case "send_rh" :
include("./rh/send_rh.php");
break;
//test
case "browse_ot":
include("./sap_ot/browse_ot.php");
break;
default :
include("welcome.php"); } ?></td>
</tr>
</table></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html> |
Partager