1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
<?php
session_start(); // On relaye la session
require_once('../config/config.php');
if (session_is_registered("authentification")&& $_SESSION['privilege'] == 6){
}
else {
header("Location:index.php?erreur=intru"); // redirection en cas d'echec
return false;
}
// Connexion SQL
mysql_select_db($database_ircxl, $ircxl);
// Assignation variables
$insert_login = $_POST['login'];
$insert_nom = $_POST['nom'];
$insert_prenom = $_POST['prenom'];
$insert_pass = $_POST['pass'];
$insert_confirm = $_POST['confirm'];
$insert_priv = $_POST['privilege'];
$insert_id=$_POST['idpmono'];
echo '<html>
<head>
<title> Modification moniteurs </title>
<link rel="stylesheet" href="stylepage.css" />
</head>
<script type="text/javascript" src="functions.js"></script>
<body>';
if (isset($_POST['add']))
{
if (!isset($insert_login) || !preg_match('![a-z]{3}!i',$insert_login)) {
echo 'erreur : le nom ne doit pas contenir de chiffres et doit être plus long que 3 lettres';
return false;
}
if (!isset($insert_nom) || !preg_match('![a-z]{3,20}!i',$insert_nom)) {
echo 'erreur : le nom ne doit pas contenir de chiffres et doit être plus long que 3 lettres';
return false;
}
if (!isset($insert_prenom) || !preg_match('![a-z]!i',$insert_prenom)) {
echo 'erreur : le prénom ne peut être vide et ne peut contenir que des lettres';
return false;
}
if (!isset($insert_pass) || strlen($insert_pass) != 10) {
echo 'erreur : le champ mot de passe ne peut être vide et doit contenir 10 caracteres';
return false;
}
if (!isset($insert_confirm) || strlen($insert_pass) != 10) {
echo 'erreur : le champ de confirmation ne peut être vide et doit contenir 10 caracteres';
return false;
}
if ($insert_pass !== $insert_confirm) {
echo 'erreur : la confirmation ne correspond pas avec le mot de passe';
return false;
}
switch ($insert_priv)
{
case "6" :
$priv_verif = true;
break;
case "4" :
$priv_verif = true;
break;
case "3" :
$priv_verif = true;
break;
case "5" :
$priv_verif = true;
break;
case "1" :
$priv_verif = true;
break;
case "2" :
$priv_verif = true;
break;
}
if ($priv_verif != true) {
echo 'erreur : le privilege choisi est incorrect';
return false;
}
$pswa = md5($insert_pass);
$pswb = md5($passe);
$insert_psw = $pswb&$pswa;
$sqlupd=" UPDATE moniteurs SET login='$insert_login', pass='$insert_psw', nom='$insert_nom', prenom='$insert_prenom', privilege='$insert_priv' WHERE id_user=$insert_id ";
mysql_query($sqlupd, $ircxl) or die (mysql_error());
echo "$sqlupd";
}
//Code pour l'affichage de liste sélection profs
$query_affmono = 'SELECT * FROM utilisateurs ORDER BY login ASC'; // Récupération de la liste des logins par ordre ascendant
$affmono = mysql_query($query_affprof, $ircxl) or die ("test"); //Envoi de la requête vers la base de données
echo'<form action"'.$_SERVER['PHP_SELF'].'" method="post">
sélectionner un sigle :
<select name="selectmono" onchange="this.form.submit();"><option value="">mono</option>';
while ($array_monos = mysql_fetch_array($affmono))
echo'<option value="'.$array_monos['id_user'].'">'.$array_mono['login'].'</option>';
echo '</select>
</form>';
//Récupération des données du profs sélectionner
if (!empty($_POST))
{
$query_donmono='SELECT * FROM moniteurs WHERE id_user='.$_POST['selectmono'];
$affdonmono=mysql_query($query_donmono) or die ('Requête :'.$affdonmono.'<br />Erreur :'.mysql_error());
$array_affmono=mysql_fetch_array($affdonmono);
}
echo '<form action="'.$_SERVER['PHP_SELF'].'" method="post">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="titreTableau" colspan="2"><input type="hidden" name="add" value="1" />Modifier un utilisateur</td>
</tr>
<tr>
<td class="intitules">Login</td>
<td class="champs"><input name="login" type="text" value="'.$array_affmono['login'].'"/></td>
</tr>
<tr>
<td class="intitules">Nom</td>
<td class="champs"><input name="nom" type="text" value="'.$array_affmono['nom'].'"/></td>
</tr>
<tr>
<td class="intitules">Prenom</td>
<td class="champs"><input name="prenom" type="text" value="'.$array_affmono['prenom'].'"/></td>
</tr>
<tr>
<td class="intitules">Mot de passe</td>
<td class="champs"><input name="pass" type="text" /></td>
</tr>
<tr>
<td class="intitules">Répeter mot de passe</td>
<td class="champs"><input name="confirm" type="text" /></td>
</tr>
<tr>
<td class="intitules">Privilège</td>
<td class="champs">
<select name="privilege" />
<option value="0">Sélection</option>
<option value="1">Utilisateur</option>
<option value="6">Administrateur</option>
<option value="4">chefmono</option>
<option value="3">respsec</option>
<option value="5">Directeur</option>
<option value="2">moniteurs</option>
</select>
</td>
</tr>
<tr>
<input type="hidden" name="idprof" value="'.$array_affmono['id_user'].'" /></td>
</tr>
<tr>
<td class="champs" colspan="2"><input type="submit" value="Envoyer" /></td>
</tr>
</table>
</body>
</html>'; |
Partager