Source de: stagiaires.php

Retour
<?php
//Code servant a afficher le source.
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/sga.css\">";
Echo 
"<A href=\"show_source.php?script=stagiaires.php\">Voir source de stagiaires.php</A><br>";
Echo 
"<A href=\"show_source.php?script=Lst_stagiaires.php\">Voir source liste des stagiaires</A><br>";
Echo 
"<A href=\"show_source.php?script=Lst_titulaire.php\">Voir source liste des titulaires</A><br><br>";

//Code de l'exercice.
?>
<html><head>
<title>Liste des stagiaires titulaires</title>
<link rel="stylesheet" type="text/css" href="../css/sga.css">
</head>
<body>
<FORM action="stagiaires.php" method="POST" name="resultat">
<h3 align="center">Liste des stagiaires titulaires</H3>


  <table width="40%" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td align="center"><em><strong>Stagiaires</strong></em></td>
      <td>&nbsp;</td>
      <td align="center"><em><strong>Titulaires</strong></em></td>
    </tr>
    <tr>
      <td align="center">
          <select name="Stagiaire[]" multiple>
        <?php include("Lst_stagiaires.php"); ?>
         </select>

         </td><td width="20%" align="center">
 &nbsp;&nbsp;&nbsp;&nbsp;
        <input name="resultat" type="submit" value="====&gt;"><td align="center">
 &nbsp;&nbsp;&nbsp;&nbsp;
        <select name="titulaire[]" multiple>
        <?php include("Lst_titulaire.php"); ?>
        </select>
<td>&nbsp; </td></tr>
</table>

<?php
foreach ($titulaire as $cle => $valeure ){
      echo 
"titulaire ajouter: $valeure\n<br>";
}
?>

</FORM></body></html>

Traité le : 28/08/2026 05:30:32