diff options
Diffstat (limited to 'appli_3_alpha_old/app/profil.php')
-rw-r--r-- | appli_3_alpha_old/app/profil.php | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/appli_3_alpha_old/app/profil.php b/appli_3_alpha_old/app/profil.php deleted file mode 100644 index 6277d50..0000000 --- a/appli_3_alpha_old/app/profil.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php -require('include/ludo/session_verify.inc.php'); -require_once('include/ludo/html_elements.inc.php'); -require_once('include/connect.inc.php'); -require_once('include/ju.inc.php'); -if ( isset($_REQUEST['action']) ) -{ - $nom_func = 'traiter_formulaire_' . $_REQUEST['action']; - $nom_func(); -} -generate_html_doctype_and_head("Modèle"); - -echo "<body>\n"; -generate_html_divs_menu(); -?> - <div id="sous_menu"> - <p class="arbre"> - > <a href="index.php">Accueil</a> - > Administration du profil - </p> - </div> -<?php -generate_html_div_help(); -echo "<div id=\"contenu\">\n"; -$idP = $_SESSION['session_idP']; -if ( isset( $_SESSION['session_prenomP'] ) && isset( $_SESSION['session_prenomP'] ) ) -{ - $nom=$_SESSION['session_prenomP'] . ' ' . $_SESSION['session_nomP']; -} -else -{ - $nom = $_SESSION['session_loginP']; -} -$resultat = mysql_query("SELECT * FROM Personne WHERE idP = '".$_SESSION['session_idP']."'"); -if($resultat != false) -{ - $p = mysql_fetch_array($resultat); - echo "<form method=\"post\" action=\"profil.php\" onSubmit=\"return verifProfil()\" >\n"; - echo "<table>\n"; - echo "<tr><td>Methode d'authentification : </td><td>\n<select name=\"methodeAuth\">\n"; - if($p["methodeAuth"] == "webetud") echo "<option value=\"webetud\" selected=\"selected\">Webetud</option>\n"; else echo "<option value=\"webetud\">Webetud</option>\n"; - if($p["methodeAuth"] == "pop") echo "<option value=\"pop\" selected=\"selected\">POP3</option>\n"; else echo "<option value=\"pop\">POP3</option>\n"; - echo "</select></td></tr>\n"; - echo "<tr><td>Votre login :</td><td><input type=\"text\" name=\"loginP\" id=\"loginP\" value=\"".$p["loginP"]."\"/></td></tr>\n"; - echo "<tr><td>Votre adresse mail :</td><td><input type=\"text\" name=\"courrielP\" id=\"courrielP\" value=\"".$p["courrielP"]."\"/></td></tr>\n"; - echo "<tr><td>Votre nom :</td><td><input type=\"text\" name=\"nomP\" id=\"nomP\" value=\"".$p["nomP"]."\"/></td></tr>\n"; - echo "<tr><td>Votre prenom :</td><td><input type=\"text\" name=\"prenomP\" id=\"prenomP\" value=\"".$p["prenomP"]."\"/></td></tr>\n"; - echo "<tr><td colspan=\"2\"><input type=\"submit\" /></td></tr>\n"; - echo "</table>\n"; - echo "<input type=\"hidden\" name=\"action\" value=\"maj_profil\" />\n"; - echo "</form>\n"; - echo "</div>\n"; -} -if ( isset ($errmsg) ) generate_html_div_errmsg($errmsg); -?> -<div id="msg"></div> -</body> -</html> - |