diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:13:09 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:13:09 +0200 |
commit | 3fc908d3a1d0f6c9b1fca690561098541a73266e (patch) | |
tree | c1f2dd9663a2cba43abd6b59b2612ad214a92c79 /appli_3_alpha_old/app/include/ludo/majDispo.php | |
parent | 1269889704386de951d7f91eb169eb1e1bb36cc0 (diff) | |
download | 2007-AWOR-3fc908d3a1d0f6c9b1fca690561098541a73266e.tar.gz 2007-AWOR-3fc908d3a1d0f6c9b1fca690561098541a73266e.tar.bz2 2007-AWOR-3fc908d3a1d0f6c9b1fca690561098541a73266e.zip |
Version alpha_old5 2007-02-22+15:00:00 - 2007-03-11+16:30:15
Diffstat (limited to 'appli_3_alpha_old/app/include/ludo/majDispo.php')
-rw-r--r-- | appli_3_alpha_old/app/include/ludo/majDispo.php | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/appli_3_alpha_old/app/include/ludo/majDispo.php b/appli_3_alpha_old/app/include/ludo/majDispo.php index ab7c200..106cc91 100644 --- a/appli_3_alpha_old/app/include/ludo/majDispo.php +++ b/appli_3_alpha_old/app/include/ludo/majDispo.php @@ -1,4 +1,5 @@ <?php +require('../connect.inc.php'); require('session_verify.inc.php'); require('fonctions.inc.php'); @@ -20,22 +21,19 @@ else $estDispo=addslashes($_GET['estDispo']); $idP=$_SESSION['session_idP']; - - // TODO Traitement - -/* echo "DEBUG : query==UPDATE Choisir SET estDispo = '$estDispo' WHERE idC='$idC' AND idP='$idP'"; $query="UPDATE Choisir SET estDispo = '$estDispo' WHERE idC='$idC' AND idP='$idP'"; $result = @mysql_query($query); - if ( ! $result || ( mysql_num_rows($result) !== 1 ) ) + if ( ! $result || ( mysql_affected_rows() !== 1 ) ) { $query="INSERT INTO Choisir(idC,idP,estDispo) VALUES ('$idC', '$idP', '$estDispo')"; - $result = @mysql_query($query); - if ( ! $result || ( mysql_num_rows($result) !== 1 ) ) + //echo "DEBUG :$query"; + $result = mysql_query($query); + if ( ! $result || ( mysql_affected_rows() !== 1 ) ) { echo "Erreur BD\n"; return; } - } */ + } generate_html_dispo_case($idR, $idP, $idC, true, $estDispo, false); } ?>
\ No newline at end of file |