Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www
/
private
/
expos
/
[
Home
]
File: expos_ajout.php
<?php include("../../inc/enligne_param.inc.php"); include("../../inc/gere_session.inc.php"); include("../../inc/salutations.inc.php"); $date=(date('j-m-Y')); $heure=(date('G.i')); //récup des données $req = "select * from expos order by id DESC"; $rep = mysql_query($req,$con)or die($req.__line__); ?> <!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>CCPSA Expositions et Manifestations ajout</title> <style type="text/css"> <!-- @import url("../../css/form_common.css"); --> </style> </head> <body> <div id="page" class="clearfix"> <h2>EXPOS & MANIFESTATIONS - AJOUT</h2> <h5>Interface Administrateur. Session ouverte pour : <?php echo ucfirst($LePrenom).' '.strtoupper($LeNom); ?>.</h5> <div id="left_col"><p> </p> <form action="expos_ajout_x.php" method="post" name="form" id="form" enctype="multipart/form-data"> <!--/DATE DE MISE A JOUR DU SITE/--> <input type="hidden" name="date_expo" value="<?php echo $date; ?>" /> <input type="hidden" name="heure_expo" value="<?php echo $heure; ?>" /> <!----> </div> <div id="container"> <div id="main_col"> <p>Début Expo :<span style="margin-left:236px;">Fin Expo :</span></p> <p> <select name='jourdebut'> <option value="">jour </option> <?php for($i=1; $i<=31;$i++){ //Lister les jours if ($i < 10){ //Lister les jours pour pouvoir leur ajouter un 0 devant echo "<OPTION>0$i<br></OPTION>"; } else { echo "<OPTION>$i<br></OPTION>"; } } ?> </select> <select name='moisdebut'> <option value="">mois </option> <?php for($i=1; $i<=12;$i++){ //Lister les mois if ($i < 10){ //Lister les mois pour pouvoir leur ajouter un 0 devant echo "<OPTION>0$i<br></OPTION>"; } else { echo "<OPTION>$i<br></OPTION>"; } } ?> </select> <select name="andebut"> <option value="">année </option> <?php for($i=2019; $i<=2030;$i++){ echo "<option>$i</option>";} ?> </select> <span style="margin-left:78px;"> </span> <select name='jourfin'> <option value="">jour </option> <?php for($i=1; $i<=31;$i++){ //Lister les jours if ($i < 10){ //Lister les jours pour pouvoir leur ajouter un 0 devant echo "<OPTION>0$i<br></OPTION>"; } else { echo "<OPTION>$i<br></OPTION>"; } } ?> </select> <select name='moisfin'> <option value="">mois </option> <?php for($i=1; $i<=12;$i++){ //Lister les jours if ($i < 10){ //Lister les mois pour pouvoir leur ajouter un 0 devant echo "<OPTION>0$i<br></OPTION>"; } else { echo "<OPTION>$i<br></OPTION>"; } } ?> </select> <select name="anfin"> <option value="">année </option> <?php for($i=2019; $i<=2030;$i++){ echo "<option>$i</option>";} ?> </select> <hr /> </p> <p>Visuel (En JPG compression ≈ 60% - 465 px dans la plus GRANDE dimension) :</p> <input type="file" name="visuel" id="fileField" type="text" size="56"/> <p>Intitulé :<span style="margin-left:225px;">Auteur :</span></p> <input name="titre" type="mdtext" size="78" value="sans titre"/> <input name="auteur" type="mdtext" size="78" /> <p>Lieu :</p> <input name="lieu" type="text" size="78" /> <p>Adresse :</p> <input name="adresse" type="text" size="78"/> <p>Tél :</p> <input name="tel" type="text" id="boite2"/> <p>Lien :</p> <input name="lien" type="text" size="78" value="http://"/> <p>Commentaire :</p> <textarea name="texte" cols="75" rows="6" value="sans commentaire"/></textarea> </textarea> </div> <!--fin main_col--> <div id="right_col"> <p> <input type="submit" name="Submit"value="| Valider |" /> </p> <p> <center> <a href="expos.php" class="xlink" title="annuler"/>ANNULER</a> </center> </p> <!--FIN BOUTONS VALIDATION--> </div> <!--fin right_col--> </div> <!--fin container--> <!--BOUTONS VALIDATION--> </form> </div> <!--fin page--> </body> </html>
©
2020 Black Eagle Team