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
| <?php
//début de la session
session_start();
//si la variable de session n'existe pas
if(!isset($_SESSION['id']) && !isset($_SESSION['droit']))
{
header("Location: ../erreur.php");
exit;
}
//si une session est en cours
else
{
?>
<html>
<head>
<style type="text/css">
<!--
.t12 { font-size: 12px}
-->
</style>
<title>menu</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<base target="iframe">
</head>
<body class="t12">
<ul>
<!--lien pour la déconnexion et le retour à la page login-->
<li><a href="../deconnexion.php" target="_top"><small><small><font face="Arial"><strong>Déconnexion
</strong></font></small></small></a></li><br/>
<?php
//affichage des rubriques propres au groupes formateur et admin
if($_SESSION['droit']=="rep03" || $_SESSION['droit']=="moi09")
{ ?>
<li><a href="formAjou1.php" target="menu1"><small><small><font face="Arial"><strong>ajouter
une inscription</strong></font></small></small></a></li>
<li><a href="menuimport.php" target="iframe"><small><small><font face="Arial"><strong>importer
des jeudis</strong></font></small></small></a></li>
<li><a href="menua1.php" target="iframe"><small><small><font face="Arial"><strong>compléter
une inscription</strong></font></small></small></a></li>
<?php
}
//affichage de la rubrique suppression pour l'admin
if($_SESSION['droit']=="moi09")
{ ?>
<li><a href="menud.php" target="iframe"><small><small><font face="Arial"><strong>supprimer
une inscription</strong></font></small></small></a></li>
<?php
}
//affichage pour tout le groupe afpa ainsi que mission locale
?>
<li><a href="affiche.php3" target="menu1"><small><small><font face="Arial"><strong>afficher
toutes les inscriptions</strong></font></small></small></a></li>
<li><a href="recherche.php" target="iframe"><small><small><font face="Arial"><strong>recherche</strong></font></small></small></a></li>
<li><a href="imprimer.php" target="iframe"><small><small><font face="Arial"><strong>imprimer
fiche stagiaire</strong></font></small></small></a></li>
<?php
//afficage de la rubrique résumé disponible pour le groupe afpa
if($_SESSION['groupe']=="afpa")
{ ?>
<li><a href="resume.php" target="iframe"><small><small><font face="Arial"><strong>résumé</strong></font></small></small></a></li>
</ul>
<!--webbot bot="HTMLMarkup" startspan TAG="XBOT" --><IFRAME src=" font.htm" width="200" height="330" scrolling="auto" frameborder="0" name="iframe"><!--webbot bot="HTMLMarkup" endspan
-->
<!--webbot bot="HTMLMarkup" startspan TAG="XBOT" --></IFRAME><!--webbot bot="HTMLMarkup"
endspan -->
<?php
} ?>
</body>
</html>
<?php
} ?> |
Partager