forked from rebillar/site-accueil-insa
couche de sécu en plus
This commit is contained in:
parent
72037a668b
commit
34b2dbbe03
2 changed files with 55 additions and 50 deletions
|
@ -9,6 +9,7 @@ $req = $db->query("SELECT * FROM enigma WHERE id = 1");
|
|||
$r = $req -> fetchAll(PDO::FETCH_ASSOC);
|
||||
|
||||
if(isset($_POST['send'])) {
|
||||
if($user['perm'] >= 2) {
|
||||
if(isset($_POST['answer']) AND !empty($_POST['answer'])) {
|
||||
$ans = htmlspecialchars($_POST['answer']);
|
||||
$req = $db->prepare("UPDATE enigma SET answer = ? WHERE id = 1");
|
||||
|
@ -35,6 +36,7 @@ if(isset($_POST['send'])) {
|
|||
$req->execute(array($t_int));
|
||||
}
|
||||
header('Refresh:0');
|
||||
}
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
|
|
|
@ -19,6 +19,8 @@ if(isset($_GET['del']) AND !empty(['del']))
|
|||
|
||||
if(isset($_POST['send'])) {
|
||||
if(isset($_POST['pseudo']) AND !empty($_POST['pseudo']) AND isset($_POST['mdp']) AND !empty($_POST['mdp']) AND isset($_POST['perm']) AND !empty($_POST['perm'])) {
|
||||
|
||||
if($user['perm'] >= 2) {
|
||||
$pseudo = htmlspecialchars($_POST['pseudo']);
|
||||
$mdp = htmlspecialchars($_POST['mdp']);
|
||||
$perm = htmlspecialchars($_POST['perm']);
|
||||
|
@ -49,6 +51,7 @@ if(isset($_POST['send'])) {
|
|||
} else {
|
||||
$error = "le pseudo ne doit pas dépasser 50 char";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$error = "Tout les champs doivent être complétés";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue