Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Bookmarks
/
CHESS_ON
:
edition_partie.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php session_start(); //include('generation_classement.php'); include('database.php'); DB_connexion(); /*if(!isset($_SESSION['logged']) ) { header ('Location: interdiction.php'); } if($_SESSION['logged']== "no") { header ('Location: interdiction.php'); }*/ if(!empty($_POST) ) { $_SESSION['sauvegarde_formulaire'] = $_POST ; $page_actuelle = $_SERVER['PHP_SELF'] ; if(!empty($_SERVER['QUERY_STRING'])) { $page_actuelle .= '?' . $_SERVER['QUERY_STRING'] ; } header('Location: ' . $page_actuelle); exit; } if(isset($_SESSION['sauvegarde_formulaire'])) { $_POST = $_SESSION['sauvegarde_formulaire'] ; unset($_SESSION['sauvegarde_formulaire']); } ?> <!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" xml:lang="fr" lang="fr" dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="Description" content="Site perso,cours,ouvrages" /> <meta name="Keywords" content="WEBSITE perso " /> <meta name="Distribution" content="Global" /> <meta name="Robots" content="" /> <meta http-equiv="Content-Language" content="fr" /> <meta name="rating" content="general" /> <meta name="author" content="Patrice DELPY" /> <meta name="copyright" content="Copyright 2013" /> <meta name="generator" content="Patoche" /> <title>Patoche WEBSITE - 2013 - Template du site - en cours de développemment ...</title> <META http-equiv="Cache-Control" content="no-cache"> <!-- en php header("Cache-Control: no-cache, must-revalidate"); --> <!----------------------------------------------------------> <?php include('include_css_template_commun.php'); include('include_css.php'); include('css_tools_skill.php'); include('include_javascript.php'); ?> <!-- <link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet"> <script src="http://code.jquery.com/jquery-1.10.2.js"></script> <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> --> <link rel="stylesheet" href="//code.jquery.com/ui/1.13.1/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css"> <script src="https://code.jquery.com/jquery-3.6.0.js"></script> <script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script> <style type="text/css"> #bloc_table_forum { float: left; width: 831px; padding: 50px 50px 25px 50px; } #navigation_tournoi{ float: left; width: 910px; // 870 padding: 10px 0px 0px 10px; } .marge { margin: auto; width: 60%; padding: 10px ; } label { display:block; float:left; width:100px; } </style> <script type="text/javascript"> function call_update() { scruter(); setTimeout("call_update()", 1000); //appelle la fonction 1 fois par seconde } function scruter() { var xhr = getXhr() xhr.onreadystatechange = function() { // On ne fait quelque chose que si on a tout reçu et que le serveur est ok if(xhr.readyState == 4 && xhr.status == 200) { retour = xhr.responseText if(retour == 0) { $(function() { $( "#message_expiration" ).dialog({ modal: true, title: "Infos", buttons: { Ok: function() { $( this ).dialog( "close" ); document.location.href = "logout_expire.php"; } } }); }); } } } xhr.open("GET","session_timeout.php",true); xhr.send(null); } function active() { document.getElementById("score").style.visibility='visible'; document.getElementById('valide_form').value="ok"; } function active_sauver() { document.getElementById('send').disabled = false; } function sleep(delay) { var start = new Date().getTime(); while (new Date().getTime() < start + delay); } function start() { fct_confirmation(); } function traitement() { sel = document.getElementById('J1'); J1 = sel.options[sel.selectedIndex].value; sel = document.getElementById('J2'); J2 = sel.options[sel.selectedIndex].value; sel = document.getElementById('selection_score'); selection_score = sel.options[sel.selectedIndex].value; id_partie = document.getElementById('id_partie').value; alert("Zoulou...."); window.location.href = "debug_edite_partie.php?J1=" + J1 + "&J2=" + J2 + "&selection_score=" + selection_score + "&id_partie=" + id_partie; } function fct_confirmation() { $(function () { $( "#dialog_confirmation" ).dialog({ modal: true, title: "Info", closeOnEscape: false, buttons: { Oui: function() { $( this ).dialog( "close" ); traitement(); }, Non: function() { $( this ).dialog( "close" ); } } }); $("#dialog_confirmation").click(function () { $('#dialog_confirmation').dialog('open'); }); }); } function aaaastart() { alert("lll"); document.getElementById("message_patience").style.display='block'; var xhr = getXhr(); xhr.onreadystatechange = function() { // On ne fait quelque chose que si on a tout reçu et que le serveur est ok if(xhr.readyState == 4 && xhr.status == 200) { document.getElementById("message_patience").style.display='none'; if(retour == 1) { $(function() { $( "#message_edition" ).dialog({ modal: true, title: "Infos", buttons: { Ok: function() { $( this ).dialog( "close" ); window.location.reload(); // retourne à la page précedente historique.php javascript:history.go(-1); } } }); }); } } } xhr.open("POST","traitement_editer_partie.php",true); xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); sel = document.getElementById('J1'); J1 = sel.options[sel.selectedIndex].value; sel = document.getElementById('J2'); J2 = sel.options[sel.selectedIndex].value; sel = document.getElementById('selection_score'); selection_score = sel.options[sel.selectedIndex].value; id_partie = document.getElementById('id_partie').value; xhr.send("J1="+J1+"&J2="+J2+"&id_partie="+id_partie+"&selection_score="+selection_score); } function getXhr() { var xhr = null; if(window.XMLHttpRequest) // Firefox et autres xhr = new XMLHttpRequest(); else if(window.ActiveXObject) { // Internet Explorer try { xhr = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xhr = new ActiveXObject("Microsoft.XMLHTTP"); } } else { // XMLHttpRequest non supporté par le navigateur alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); xhr = false; } return xhr; } function go() { var xhr = getXhr(); document.getElementById("souscategorie").style.visibility='visible'; xhr.onreadystatechange = function() { if(xhr.readyState == 4 && xhr.status == 200) { leselect = xhr.responseText; // On se sert de innerHTML pour rajouter les options a la liste document.getElementById('souscategorie').innerHTML = leselect; } } xhr.open("POST","ajax_joueur.php",true); xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); sel = document.getElementById('J1'); idcategorie = sel.options[sel.selectedIndex].value; xhr.send("idcategorie="+idcategorie); } </script> <!----------------------------------------------------------> </head> <!----------------------------------------------------------> <div class="main"> <!-- main --> <!----------------------------------------------------------> <div class="header"> <div class="balise_titre">Patoche</div> <div class="balise_citation"> "Etre conscient que l'on est ignorant est un grand pas vers le savoir" </div> </div> <div class="banniere"></div> <!----------------------------------------------------------> <?php /* include("include_barre_login.php"); echo '<div id="box_icon">'; include("debug_connexion_membre.php"); echo '</div>'; include("include_menu.php");*/ echo '<div id="box_infos">'; include("include_menu.php"); echo '<div id="box_icon2">'; include("connexion_membre.php"); echo '</div>'; echo '<div id="box_icon3">'; include("include_barre_login.php"); echo '</div>'; echo '</div>'; $_SESSION['page_active'] = basename (__FILE__ ); ?> <!----------------------------------------------------------> <div class="contenu"> <!-- contenu --> <!----------------------------------------------------------> <div class="barre_vide"></div> <div id="navigation_tournoi"> <ul id="menu_horiz"> <li class="tournoi_partie_tag"><a href="partie.php" title="aller à la section">Duel</a></li> <li class="tournoi_simulation_tag"><a href="simulation.php" title="aller à la section">Sim</a></li> <li class="tournoi_classement_tag"><a href="classement02.php" title="aller à la section">ELO</a></li> <li class="tournoi_master_tag"><a href="on_chess_master02.php" title="aller à la section">Master</a></li> <li class="tournoi_liste_joueurs_tag"><a href="joueurs_echec.php" title="aller à la section">Players</a></li> <li class="tournoi_stats_tag_selected"><a href="historique.php" title="aller à la section">Games</a></li> <li class="tournoi_reglement_tag"><a href="reglement.php" title="aller à la section">Rules</a></li> <li class="tournoi_securite_tag"><a href="admin.php" title="aller à la section">Admin</a></li> </ul> </div> <div id="bloc_table_forum"> <?php $id_partie = $_GET["id"] + 1; $J1 = $_GET["J1"] ; $J2 = $_GET["J2"] ; $score = $_GET["score"] ; $date_partie = $_GET["date"] ; ?> <input type="hidden" name="valide_form" id="valide_form" value="" /> <input type="hidden" name="id_partie" id="id_partie" value="<?php echo $id_partie; ?>" /> <input type="hidden" name="date_partie" id="date_partie" value="<?php echo $date_partie; ?>" /> <fieldset style="width: 600px"> <legend>Edition des paramétres de la partie <?php echo $id_partie; ?> </legend> <?php echo "<p>"; echo $J1 ." contre " .$J2 ." : " .$score; echo "<p>"; ?> <p> <div class="center"> <label>Blanc: </label> <select name='J1' id='J1' onchange='go()'> <option value="vide">- - - Choisissez le Joueur 1 - - -</option> <?php //$sql = "SELECT * FROM classement"; $sql = "SELECT * FROM " .$_SESSION['classement']; $res = mysql_query($sql); while($val = mysql_fetch_array($res)) { echo "<option>".$val["joueur"]."</option>\n"; } ?> </select> </div> </p> <p> <div id='souscategorie' style="visibility: hidden;" > <!-- style='display:inline' --> <div class="center"> <label>Noir: </label> <select name='J2' id='J2' "> <!-- --> </select> </div> </div> </p> <div id='message_patience' style="display: none"> <img src="loader.gif" name = "image" id="image"> Traitement en cours ... </div> <p> <div id="score" style="visibility: hidden; "> <label>Résultat :</label> <select name="selection_score" id='selection_score' size="1" style='display:inline' onchange='active_sauver()' > <option value="vide">- - - Resultat de la partie - - -</option> <?php $J1_nom = $_SESSION['$J1_nom']; $J2_nom = $_SESSION['$J2_nom']; echo '<option>Blanc gagne</option>'; echo '<option>Blanc perd</option>'; echo '<option>Match nul</option>'; ?> </select> </div> </p> <div> <input id="send" name="send" type="submit" disabled value="Enregistrer" onclick="start()"/> </div> <br> <br> <div id="dialog_confirmation" style="display: none" align = "center">Confirmer l'édition de la partie ?.</div> <div id='message_patience' style="display: none"> <img src="loader.gif" name = "image" id="image"> Traitement en cours ... </div> <div id='message'></div> <div id="message_edition" style="display: none"> <p> <span class="ui-icon ui-icon-circle-check" style="float:left; margin:0 7px 50px 0;"></span> La partie a été modifiée et stocker dans la base. </p> </div> <div id="message_expiration" style="display: none"> <p> <span class="ui-icon ui-icon-circle-check" style="float:left; margin:0 7px 50px 0;"></span> La session a expiré. veuillez vous reconnecter. </p> </div> </fieldset> </div> <br/> <br/> <br/> <br/> <br/> <!----------------------------------------------------------> <?php include('include_pied_page.php'); include('include_publicite.php'); //echo '<pre>' . print_r($_SESSION, TRUE) . '</pre>'; ?> <!----------------------------------------------------------> </div> <!-- contenu --> <!----------------------------------------------------------> </div> <!-- main --> <!----------------------------------------------------------> <script type="text/javascript"> call_update(); </script> </body> </html>