Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www.old
/
private
/
seances_impression
/
[
Home
]
File: seances_impression_ajout.php
<?php include("../../inc/enligne_param.inc.php"); include("../../inc/gere_session.inc.php"); include("../../inc/salutations.inc.php"); ?> <!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> <title>CCPSA séances impression ajout</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> <!-- @import url("../../css/form.css"); --> </style> </head> <body> <div id="page" class="clearfix"> <h2>SÉANCES IMPRESSION - CREATION</h2> <h5>Interface Administrateur. Session ouverte pour : <?php echo ucfirst($LePrenom).' '.strtoupper($LeNom); ?>.</h5> <div id="left_col"> <?php include("../../inc/menu.inc.php");?> </div> <!--FIN LEFT COL--> <div id="container"> <form name="form2" id="form2" method="post" action="seances_impression_ajout_x.php" enctype="multipart/form-data"> <div id="main_col"> <p><strong>Nouvelle séance d'impression : </strong></p><p/> <hr/> <p>Date :</p> <p> <input name="date_seance" type="date"/></p> <p>Animateur :</p> <p> <select name="animateur"> <?php // Récupération de la liste des animateurs de séances d'impression $query = "SELECT * FROM adherent WHERE animateur_seance_impr=1 ORDER BY prenom"; $result = mysql_query($query) or die("Erreur dans l'extraction des informations (liste seances)<br>"); $nbP = mysql_num_rows($result); // Récuperation des résultats if ($nbP==0) { echo "<p>Aucune donnée à afficher</p>"; } else { while ($row = mysql_fetch_array($result)){ $IdAdherent = $row["id"]; $PrenomAnmiateur = $row["prenom"]; $NomAnmiateur = $row["nom"]; echo '<option value="'.$IdAdherent.'">'.ucfirst($PrenomAnmiateur).' '.strtoupper($NomAnmiateur).'</option>'; } } ?> <!--<option value="99">Claude BORDIER</option>--> <!--<option value="27">Daniel KERMANN</option>--> <!--<option value="107">Fabrice JOUSSELIN</option>--> </select> </p> <p>Horaires :</p> <p><input name="horaires" type="text"/></p> <p>Commentaire :</p> <p><input name="commentaire" type="text"/></p> </div> <!--FIN MAIN COL--> <div id="right_col"> <!--BOUTONS VALIDATION--> <p> <input type="submit" name="Submit" value="Valider" /> </p> <p> <center> <a href="seances_impression.php" title="retour site"/>Annuler</a> </center> </p> <!--FIN BOUTONS VALIDATION--> </div> </form> </div> <!--fin container--> <hr /> </div> <!--fin page--> </body> </html>
©
2020 Black Eagle Team