forked from vergnet/site-accueil-insa
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
bf2da85110
2 changed files with 62 additions and 5 deletions
|
@ -14,7 +14,15 @@ section {
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: white;
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
width: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1500px) {
|
@media (max-width: 1500px) {
|
||||||
|
|
57
vacances.php
57
vacances.php
|
@ -26,6 +26,31 @@ if(isset($_POST['send'])) {
|
||||||
}
|
}
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$req = $db->prepare("SELECT * FROM scores WHERE texte = ?");
|
||||||
|
$req->execute(array("Mots croisés"));
|
||||||
|
$req_exist = $req->rowCount();
|
||||||
|
if($req_exist == 0) {
|
||||||
|
if($end) {
|
||||||
|
if(isset($_POST['team']) AND !empy($_POST['team'])) {
|
||||||
|
|
||||||
|
$team = htmlspecialchars($_POST['team']);
|
||||||
|
if($team == "pkpeach") {
|
||||||
|
$team = 0;
|
||||||
|
} elseif($team == "boomario") {
|
||||||
|
$team = 1;
|
||||||
|
} else {
|
||||||
|
header('Refresh: 0');
|
||||||
|
}
|
||||||
|
|
||||||
|
$req = $db->prepare("INSERT INTO scores(texte, points, team) VALUES(?, ?, ?)");
|
||||||
|
$req->execute(array("Mots croisés","500", $team));
|
||||||
|
} else {
|
||||||
|
$error = "veuillez indiquer votre équipe";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<main>
|
<main>
|
||||||
|
@ -42,8 +67,8 @@ if(isset($_POST['send'])) {
|
||||||
<img src="assets/img/mot_croise.svg" class="mot_croise">
|
<img src="assets/img/mot_croise.svg" class="mot_croise">
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
Tout les mots doivent être indiqués en minuscule, sans accent, sans espaces ni caractères spéciaux.
|
|
||||||
<form method="POST">
|
<form method="POST">
|
||||||
|
Tout les mots doivent être indiqués en minuscule, sans accent, sans espaces ni caractères spéciaux.<br><br>
|
||||||
<?php
|
<?php
|
||||||
$req = $db->query('SELECT id FROM mot_croise');
|
$req = $db->query('SELECT id FROM mot_croise');
|
||||||
|
|
||||||
|
@ -53,8 +78,8 @@ if(isset($_POST['send'])) {
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
if($end) {
|
if($end) {
|
||||||
?>
|
?> <br>
|
||||||
Franchement GG à vous, choisissez votre équipe ci-dessous pour lui faire remporter les points
|
Franchement GG à vous, choisissez votre équipe ci-dessous pour lui faire remporter les points :<br>
|
||||||
<select name="team">
|
<select name="team">
|
||||||
<option value="">Choisissez votre équipe</option>
|
<option value="">Choisissez votre équipe</option>
|
||||||
<option value="pkpeach">PKpeach</option>
|
<option value="pkpeach">PKpeach</option>
|
||||||
|
@ -62,8 +87,32 @@ if(isset($_POST['send'])) {
|
||||||
</select>
|
</select>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?><br>
|
||||||
<input type="submit" name="send" value="Envoyer">
|
<input type="submit" name="send" value="Envoyer">
|
||||||
|
|
||||||
|
<font color="red">
|
||||||
|
<?php if(isset($error)) {
|
||||||
|
echo $error;
|
||||||
|
} ?>
|
||||||
|
</font>
|
||||||
|
|
||||||
|
<br><br>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
$req = $db->prepare("SELECT team FROM scores WHERE texte = ?");
|
||||||
|
$req->execute(array("Mots croises"));
|
||||||
|
$req_exist = $req->rowCount();
|
||||||
|
$team_gg = $req -> fetchAll(PDO::FETCH_ASSOC);
|
||||||
|
if($req_exist == 0) {
|
||||||
|
echo "Aucune des deux équipes n'a réussit à trouver tout les mots";
|
||||||
|
} else {
|
||||||
|
if($team_gg[0]['team'] == 0) {
|
||||||
|
echo "Pkpeach à déjà tout trouvé";
|
||||||
|
} else {
|
||||||
|
echo "Boomario à déjà tout trouvé";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
|
|
Loading…
Reference in a new issue