summaryrefslogtreecommitdiff
path: root/maquette/popcreneau.php
diff options
context:
space:
mode:
Diffstat (limited to 'maquette/popcreneau.php')
-rw-r--r--maquette/popcreneau.php119
1 files changed, 70 insertions, 49 deletions
diff --git a/maquette/popcreneau.php b/maquette/popcreneau.php
index 8202d7e..0ef7a34 100644
--- a/maquette/popcreneau.php
+++ b/maquette/popcreneau.php
@@ -1,43 +1,58 @@
<?php
- if (isset($_GET['idR']))
- {
- include ('connect.inc.php');
- echo '<h2>Cr&eacute;neaux de la r&eacute;union </h2>';
- echo '<div class="popup_contenu">';
- echo '<form id="formcreneau" method="get" action="'.$_GLOBAL['php_self'].'" onsubmit="return dataListe(\'creneaux\',\'dataCreneaux\');">';
- echo '<table>';
- echo '<tr>';
- echo '<td>Cr&eacute;er un cr&eacute;neau </td>';
- echo '<td>&nbsp;</td>';
- echo '<td>Cr&eacute;neaux</td>';
- echo '</tr>';
- echo '<tr>';
- echo '<td>Date : ';
- echo '<select name="day">';
+function generate_html_div_popfixer($idC)
+{
+ require_once ('connect.inc.php');
+ ?>
+ <h2>Cr&eacute;neaux de la r&eacute;union </h2>
+ <div class="popup_contenu">
+ <form id="formcreneau" method="get" action="<?php $_GLOBAL['php_self']; ?>" onsubmit="return dataListe('creneaux','dataCreneaux');">
+ <table>
+ <tr>
+ <td>Cr&eacute;er un cr&eacute;neau </td>
+ <td>&nbsp;</td>
+ <td>Cr&eacute;neaux</td>
+ </tr>
+ <tr>
+ <td>Date&nbsp;:&nbsp;
+ <select name="day">
+ <?php
for ($i=1;$i<=31;$i++) {$i = "0$i"; $i = substr($i,-2); echo "<option value=\"$i\">$i</option>"; }
- echo '</select>/';
- echo '<select name="month">';
+ ?>
+ </select>/
+ <select name="month">
+ <?php
for ($i=1;$i<=12;$i++) {$i = "0$i"; $i = substr($i,-2); echo "<option value=\"$i\">$i</option>"; }
- echo '</select>/';
- echo '<select name="year">';
+ ?>
+ </select>/
+ <select name="year">
+ <?php
for ($i=date('Y');$i<=((int)date('Y')+4);$i++) echo "<option value=\"$i\">$i</option>";
- echo '</select><br />D&eacute;but : ';
- echo '<select name="hourStart">';
+ ?>
+ </select><br />D&eacute;but&nbsp;: &nbsp;
+ <select name="hourStart">
+ <?php
for ($i=0;$i<=23;$i++) {$i = "0$i"; $i = substr($i,-2); echo "<option value=\"$i\">$i</option>"; }
- echo '</select>:';
- echo '<select name="minuteStart">';
+ ?>
+ </select>:
+ <select name="minuteStart">
+ <?php
for ($i=0;$i<=59;$i++) {$i = "0$i"; $i = substr($i,-2); echo "<option value=\"$i\">$i</option>"; }
- echo '</select><br />Fin : ';
- echo '<select name="hourEnd">';
+ ?>
+ </select><br />Fin&nbsp;:&nbsp;
+ <select name="hourEnd">
+ <?php
for ($i=0;$i<=23;$i++) {$i = "0$i"; $i = substr($i,-2); echo "<option value=\"$i\">$i</option>"; }
- echo '</select>:';
- echo '<select name="minuteEnd">';
+ ?>
+ </select>:
+ <select name="minuteEnd">
+ <?php
for ($i=0;$i<=59;$i++) {$i = "0$i"; $i = substr($i,-2); echo "<option value=\"$i\">$i</option>"; }
- echo '</select></td>';
- echo '<td><input name="AjouterCreneau" type="button" value="Ajouter" onclick="addcreneau(this.form);"/><br/><br/>';
- echo '<input name="supprimerCreneau" type="button" value="Retirer" onclick="removecreneau(this.form);"/></td>';
- echo '<td><select name="creneaux" size="10" id="creneaux">';
-
+ ?>
+ </select></td>
+ <td><input name="AjouterCreneau" type="button" value="Ajouter" onclick="addcreneau(this.form);"/><br/><br/>
+ <input name="supprimerCreneau" type="button" value="Retirer" onclick="removecreneau(this.form);"/></td>
+ <td><select name="creneaux" size="10" id="creneaux">
+ <?php
$result = mysql_query("SELECT UNIX_TIMESTAMP(dateHeure),duree FROM Creneau WHERE idR=".$_GET['idR']);
if (mysql_num_rows($result)>0)
{
@@ -46,23 +61,29 @@
$row = mysql_fetch_array($result);
$date_deb =$row[0];
$date_fin = $date_deb + 60 * $row[1];
- echo '<option>' . date('H:i',$date_deb) . ' -&gt; ' . date('H:i',$date_fin) . ' ' . date('d/m/Y',$date_deb);
+ echo '<option value="'.date('Hi',$date_deb).'.'.date('Hi',$date_fin).'.'.date('d.m.Y',$date_deb).'">' . date('H:i',$date_deb) . ' -&gt; ' . date('H:i',$date_fin) . ' ' . date('d/m/Y',$date_deb);
}
}
-
- echo '</select></td></tr></table><br/>';
- echo '<input type="hidden" id="dataCreneaux" name="dataCreneaux" />';
- echo '<input type="submit" value="Valider" name="action" /><input type="button" value="Fermer" onclick="popoff(\'popcreneau\')"/>';
- echo '</form>';
- echo '</div>';
- }
- else
- {
- echo '<div class="popup_contenu">';
- echo 'Erreur - pas d\'identifiant de r&eacute;union !';
- echo '<form id="formcreneau" method="get" action="'.$_GLOBAL['php_self'].'">';
- echo '<input type="button" value="Fermer" onclick="popoff(\'popcreneau\')"/>';
- echo '</form>';
- echo '</div>';
- }
+ ?>
+ </select></td></tr></table><br/>
+ <input type="hidden" name="idR" value="<?php echo $_GET['idR'];?>" />
+ <input type="submit" value="Valider" name="action" /><input type="button" value="Fermer" onclick="popoff('popcreneau')"/>
+ </form>
+ </div>
+<?php
+}
+
+if (isset($_GET['idR']))
+{
+ generate_html_div_popfixer($_GET['idR']);
+}
+else
+{
+ echo '<div class="popup_contenu">';
+ echo 'Erreur - pas d\'identifiant de r&eacute;union !';
+ echo '<form id="formcreneau" method="get" action="'.$_GLOBAL['php_self'].'">';
+ echo '<input type="button" value="Fermer" onclick="popoff(\'popcreneau\')"/>';
+ echo '</form>';
+ echo '</div>';
+}
?>