listPromo.php 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. <table width="90%" border="0" align="center" cellspacing="0">
  2. <tr>
  3. <td colspan="2" class="notice">
  4. <div class="texte">
  5. <p>Vous trouverez sur cette page toutes les informations utiles pour la <b>rentrée <?php echo $annee; ?></b> en sélectionnant l'année qui vous concerne.
  6. Vous pouvez télécharger chaque fichier (format <a href="http://get.adobe.com/fr/reader/" target="_blank">PDF</a>)
  7. ou bien l'ensemble des fichiers (format <a href="http://www.7-zip.org/" target="_blank">ZIP</a>) pour l'année choisie. <i>A imprimer avec modération...</i></p>
  8. </div>
  9. </td>
  10. <tr>
  11. <tr>
  12. <td width="10%" class="cellPromo">&nbsp;</td>
  13. <td class="cellPromo">
  14. <div align="left" class="messageTabDoc">
  15. Choisissez votre année&nbsp;:&nbsp;
  16. <?php
  17. echo "<select id=\"selectPromo\" size=\"1\">";
  18. echo "<option value=\"NULL\">"."Choisir dans la liste"."</option>";
  19. foreach($libellePromo as $key => $value) {
  20. echo "<option value=\"".$value."\">".$key."</option>";
  21. }
  22. echo "</select>";
  23. ?>
  24. </div>
  25. </td>
  26. </tr>
  27. <tr>
  28. <td colspan="2" class="cellPromo">&nbsp;</td>
  29. </tr>
  30. </table>