modification page deposer avis
This commit is contained in:
parent
24ddc892c5
commit
d0cb654525
@ -1,3 +1,10 @@
|
|||||||
|
/*
|
||||||
|
Crée par PALAFFRE Raphael
|
||||||
|
Fonction:Depot d'avis
|
||||||
|
Page PHP : deposer_avis.php
|
||||||
|
Page HTML : deposer_avis.html
|
||||||
|
*/
|
||||||
|
|
||||||
body {
|
body {
|
||||||
color:black;
|
color:black;
|
||||||
background-color:white;
|
background-color:white;
|
||||||
@ -33,16 +40,18 @@ h1{
|
|||||||
.rating {
|
.rating {
|
||||||
direction: rtl;
|
direction: rtl;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rating a {
|
.rating a {
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 3em;
|
font-size: 3em;
|
||||||
transition: color .4s;
|
transition: color .4s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rating a:hover,
|
.rating a:hover,
|
||||||
.rating a:focus,
|
.rating a:focus,
|
||||||
.rating a:hover ~ a,
|
.rating a:hover ~ a,
|
||||||
.rating a:focus ~ a {
|
.rating a:focus ~ a {
|
||||||
color: orange;
|
color: orange;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
@ -1,3 +1,10 @@
|
|||||||
|
<!--
|
||||||
|
Crée par PALAFFRE Raphael
|
||||||
|
Fonction:Depot d'avis
|
||||||
|
Page PHP : deposer_avis.php
|
||||||
|
Page CSS : deposer_avis.css
|
||||||
|
-->
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang = "fr">
|
<html lang = "fr">
|
||||||
<head>
|
<head>
|
||||||
@ -18,15 +25,24 @@
|
|||||||
<div>
|
<div>
|
||||||
<textarea id="avis_laisse" name="avis_laisse" form="formulaire_avis" rows="10" cols="100" placeholder="Avis"></textarea>
|
<textarea id="avis_laisse" name="avis_laisse" form="formulaire_avis" rows="10" cols="100" placeholder="Avis"></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>NOTE</h2>
|
<h2>NOTE</h2>
|
||||||
<div class="rating"><!--
|
|
||||||
--><a href="#1" title="Donner 1 étoile">☆</a><!--
|
<div class="rating">
|
||||||
--><a href="#2" title="Donner 2 étoiles">☆</a><!--
|
<input type="radio" name="note" id="note5" value="5"/>
|
||||||
--><a href="#3" title="Donner 3 étoiles">☆</a><!--
|
<a href="#5" label for ="note5" title="Donner 5 étoile">☆</a>
|
||||||
--><a href="#4" title="Donner 4 étoiles">☆</a><!--
|
<input type="radio" name="note" id="note4" value="4"/>
|
||||||
--><a href="#5" title="Donner 5 étoiles">☆</a>
|
<a href="#4" label for ="note4" title="Donner 4 étoiles">☆</a>
|
||||||
|
<input type="radio" name="note" id="note3" value="3"/>
|
||||||
|
<a href="#3" label for ="note3" title="Donner 3 étoiles">☆</a>
|
||||||
|
<input type="radio" name="note" id="note2" value="2"/>
|
||||||
|
<a href="#2" label for ="note2" title="Donner 2 étoiles">☆</a>
|
||||||
|
<input type="radio" name="note" id="note1" value="1"/>
|
||||||
|
<a href="#1" label for ="note1" title="Donner 1 étoiles">☆</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</br>
|
</br>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<input type="submit" value="Valider" id="submit">
|
<input type="submit" value="Valider" id="submit">
|
||||||
</div>
|
</div>
|
||||||
|
@ -0,0 +1,38 @@
|
|||||||
|
<!--
|
||||||
|
Crée par PALAFFRE Raphael
|
||||||
|
Fonction:Depot d'avis
|
||||||
|
Page HTML : deposer_avis.html
|
||||||
|
Page CSS : deposer_avis.css
|
||||||
|
-->
|
||||||
|
|
||||||
|
<?PHP
|
||||||
|
|
||||||
|
require_once (connexionBD.php);
|
||||||
|
require_once (user.php);
|
||||||
|
|
||||||
|
if (!isset($_SESSION['mail'])) {
|
||||||
|
header('Location: ../index.php');
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($_GET['codeTrajet'])) {
|
||||||
|
$mail = $_SESSION['mail'];
|
||||||
|
$avis = $_POST['avis_laisse'];
|
||||||
|
$note = $_POST['note'];
|
||||||
|
$date = date("Y-m-d H:i:s");
|
||||||
|
$estLu = 0;
|
||||||
|
$codeTrajet = $_GET['codeTrajet'];
|
||||||
|
|
||||||
|
$requete = "INSERT INTO Avis(mailEmetteur,codeTrajet,commentaire,dateAvis,note,estLu) VALUES ($mail,$codeTrajet,$avis,$date,$note,$estLu);";
|
||||||
|
|
||||||
|
$envoi = pg_query($db,$requete);
|
||||||
|
|
||||||
|
if ($envoi == FALSE){
|
||||||
|
echo 'Erreur d\'ecriture dans la BD';
|
||||||
|
}
|
||||||
|
|
||||||
|
}else{
|
||||||
|
echo 'Erreur codeTrajet';
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in New Issue
Block a user