Merge branch 'bandeau' into profil

admin
remi.biette 5 years ago
commit 6b1e6bf907

@ -1,7 +1,7 @@
*{ *{
margin: 0; margin: 0;
padding: 0; padding: 0;
font-family: "Calibri Light"; font-family: "Arial";
} }
h1{ h1{

@ -3,7 +3,7 @@ require_once('../connexionBD.php');
session_start(); session_start();
//Si on est pas connecté redirection vers la page de connexion //Si on est pas connecté redirection vers la page de connexion
if(!isset($_SESSION['mail'])){ if (!isset($_SESSION['mail'])) {
header('Location: ../index.php'); header('Location: ../index.php');
exit(); exit();
} }
@ -15,196 +15,245 @@ $modele = isset($_POST['modele']) ? $_POST['modele'] : NULL;
$nbplaces = isset($_POST['nbplaces']) ? $_POST['nbplaces'] : NULL; $nbplaces = isset($_POST['nbplaces']) ? $_POST['nbplaces'] : NULL;
$anneefab = isset($_POST['anneefab']) ? $_POST['anneefab'] : NULL; $anneefab = isset($_POST['anneefab']) ? $_POST['anneefab'] : NULL;
if(isset($_POST['submitadd'])){ if (isset($_POST['submitadd'])) {
addVoiture($db, $matricule, $marque, $modele, $nbplaces, $anneefab); addVoiture($db, $matricule, $marque, $modele, $nbplaces, $anneefab);
} }
if(isset($_POST['submitchange'])){ if (isset($_POST['submitchange'])) {
changeVoiture($db, $matricule, $marque, $modele, $nbplaces, $anneefab); changeVoiture($db, $matricule, $marque, $modele, $nbplaces, $anneefab);
} }
if(isset($_POST['submitshow'])){ if (isset($_POST['submitshow'])) {
showVoiture($db); showVoiture($db);
} }
function getPrenom($db, $mail){ function getPrenom($db, $mail)
$result = pg_query_params($db, "SELECT prenom from Utilisateur WHERE mail = $1;", array($mail)); {
if($result){ $result = pg_query_params($db, "SELECT prenom from Utilisateur WHERE mail = $1;", array($mail));
$row = pg_fetch_array($result); if ($result) {
$prenom = $row[0]; $row = pg_fetch_array($result);
return $prenom; $prenom = $row[0];
} return $prenom;
return null; }
return null;
} }
function getLogin($db, $mail){ function getLogin($db, $mail)
$result = pg_query_params($db, "SELECT login from Utilisateur WHERE mail = $1;", array($mail)); {
if($result){ $result = pg_query_params($db, "SELECT login from Utilisateur WHERE mail = $1;", array($mail));
$row = pg_fetch_array($result); if ($result) {
$login = $row[0]; $row = pg_fetch_array($result);
return $login; $login = $row[0];
} return $login;
return null; }
return null;
} }
function getTrajetsProposes($db, $mail){ function getTrajetsProposes($db, $mail)
$result = pg_query_params($db, "SELECT COUNT(*) from Trajet WHERE mailProposition = $1 AND estAnnule = false AND datedepart >= current_date;", array($mail)); {
if($result){ $result = pg_query_params($db, "SELECT COUNT(*) from Trajet WHERE mailProposition = $1 AND estAnnule = false AND datedepart >= current_date;", array($mail));
$row = pg_fetch_array($result); if ($result) {
return $row[0]; $row = pg_fetch_array($result);
} return $row[0];
return 0; }
return 0;
} }
function getTrajetsReserves($db, $mail){ function getTrajetsReserves($db, $mail)
$result = pg_query_params($db, "SELECT COUNT(*) FROM trajet tr, reserver r WHERE r.codetrajet = tr.codetrajet AND mailutilisateur = $1 AND etatres != 'Annulée' AND estAnnule = false AND datedepart >= current_date;", array($mail)); {
if($result){ $result = pg_query_params($db, "SELECT COUNT(*) FROM trajet tr, reserver r WHERE r.codetrajet = tr.codetrajet AND mailutilisateur = $1 AND etatres != 'Annulée' AND estAnnule = false AND datedepart >= current_date;", array($mail));
$row = pg_fetch_array($result); if ($result) {
return $row[0]; $row = pg_fetch_array($result);
} return $row[0];
return 0; }
return 0;
} }
function getMessagesNonLus($db, $mail){ function getMessagesNonLus($db, $mail)
$result = pg_query_params($db, "SELECT COUNT(*) from Message WHERE mailRecepteur = $1 AND estLu = FALSE;", array($mail)); {
if($result){ $result = pg_query_params($db, "SELECT COUNT(*) from Message WHERE mailRecepteur = $1 AND estLu = FALSE;", array($mail));
$row = pg_fetch_array($result); if ($result) {
$login = $row[0]; $row = pg_fetch_array($result);
return $login; $login = $row[0];
} return $login;
}
} }
function getAvisNonLus($db, $mail){ function getAvisNonLus($db, $mail)
global $db; {
$result = pg_query_params($db, "SELECT COUNT(tr.mailProposition) FROM Trajet tr, Avis av WHERE tr.codeTrajet = av.codeTrajet AND av.estLu = false AND tr.mailProposition = $1;", array($mail)); global $db;
if($result){ $result = pg_query_params($db, "SELECT COUNT(tr.mailProposition) FROM Trajet tr, Avis av WHERE tr.codeTrajet = av.codeTrajet AND av.estLu = false AND tr.mailProposition = $1;", array($mail));
$row = pg_fetch_array($result); if ($result) {
$login = $row[0]; $row = pg_fetch_array($result);
return $login; $login = $row[0];
} return $login;
}
} }
function getPathImgProfil($mail){ function getPathImgProfil($mail)
if (file_exists("../imageProfil/$mail.png")){ {
return "../imageProfil/$mail.png"; if (file_exists("../imageProfil/$mail.png")) {
} return "../imageProfil/$mail.png";
return "../imageProfil/default.svg"; }
return "../imageProfil/default.svg";
} }
function addVoiture($db, $matricule, $marque, $modele, $nbplaces, $anneefab){ function addVoiture($db, $matricule, $marque, $modele, $nbplaces, $anneefab)
$requete = "INSERT INTO public.voiture (matricule, marque, modele, nbplaces, anneefab, mail) VALUES ('".$matricule."','".$marque."','".$modele."','".$nbplaces."','".$anneefab."','".$_SESSION['mail']."');"; {
pg_query($db, $requete); $requete = "INSERT INTO public.voiture (matricule, marque, modele, nbplaces, anneefab, mail) VALUES ('" . $matricule . "','" . $marque . "','" . $modele . "','" . $nbplaces . "','" . $anneefab . "','" . $_SESSION['mail'] . "');";
pg_query($db, $requete);
} }
function changeVoiture($db, $matricule, $marque, $modele, $nbplaces, $anneefab){ function changeVoiture($db, $matricule, $marque, $modele, $nbplaces, $anneefab)
$requete = "UPDATE public.voiture SET (matricule, marque, modele, nbplaces, anneefab) = ('".$matricule."','".$marque."','".$modele."','".$nbplaces."','".$anneefab."') WHERE mail = '".$_SESSION['mail']."';"; {
echo "requete =".$requete; $requete = "UPDATE public.voiture SET (matricule, marque, modele, nbplaces, anneefab) = ('" . $matricule . "','" . $marque . "','" . $modele . "','" . $nbplaces . "','" . $anneefab . "') WHERE mail = '" . $_SESSION['mail'] . "';";
pg_query($db, $requete); echo "requete =" . $requete;
pg_query($db, $requete);
} }
function showVoiture($db){ function showVoiture($db)
$requete = "SELECT * FROM public.voiture WHERE voiture.mail = '".$_SESSION['mail']."';"; {
if($donnees = pg_query($db, $requete)){ $requete = "SELECT * FROM public.voiture WHERE voiture.mail = '" . $_SESSION['mail'] . "';";
while($res = pg_fetch_assoc($donnees)){ if ($donnees = pg_query($db, $requete)) {
echo "matricule = ".$res['matricule']."<br>"; while ($res = pg_fetch_assoc($donnees)) {
echo "marque = ".$res['marque']."<br>"; echo "matricule = " . $res['matricule'] . "<br>";
echo "modele = ".$res['modele']."<br>"; echo "marque = " . $res['marque'] . "<br>";
echo "nombre de places = ".$res['nbplaces']."<br>"; echo "modele = " . $res['modele'] . "<br>";
echo "année de fabrication = ".$res['anneefab']."<br>"; echo "nombre de places = " . $res['nbplaces'] . "<br>";
echo "année de fabrication = " . $res['anneefab'] . "<br>";
}
} }
}
} }
?> ?>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="stylesheet" href="tableauBord.css"><link rel="icon" type="image/png" href=""/> <link rel="stylesheet" href="tableauBord.css">
<title>Tableau de bord</title> <link rel="stylesheet" href="../ressources/navbarhtml.css">
<link rel="icon" type="image/png" href=""/>
<title>Tableau de bord</title>
</head> </head>
<body> <body>
<?php require ('../ressources/navbarhtml.php'); ?> <?php require('../ressources/navbarhtml.php'); ?>
<script type="text/javascript"> <script type="text/javascript">
function ShowTab (E){ function ShowTab(E) {
document.getElementById("addVoiture").style.display = (E == 1) ? 'block' : 'none'; document.getElementById("addVoiture").style.display = (E == 1) ? 'block' : 'none';
document.getElementById("changeVoiture").style.display = (E == 2) ? 'block' : 'none'; document.getElementById("changeVoiture").style.display = (E == 2) ? 'block' : 'none';
document.getElementById("showVoiture").style.display = (E == 3) ? 'block' : 'none'; document.getElementById("showVoiture").style.display = (E == 3) ? 'block' : 'none';
} }
</script> </script>
<div id="content"> <div id="content">
<div id="tableauBord"> <div id="tableauBord">
<h1>Bienvenue <?php echo getLogin($db, $mail); ?></h1> <h1>Bienvenue <?php echo getLogin($db, $mail); ?></h1>
<div id="divImgProfil"> <div id="divImgProfil">
<img id="imgProfil" src="<?php echo getPathImgProfil($mail); ?>"> <img id="imgProfil" src="<?php echo getPathImgProfil($mail); ?>">
</div> </div>
<div id="trajet"> <div id="trajet">
<a class="btnTrajet" href="../ah.php">Déposer un trajet</a> <a class="btnTrajet" href="../ah.php">Déposer un trajet</a>
<a id="btnTrajet2" class="btnTrajet" href="../ah.php">Rechercher un trajet</a> <a id="btnTrajet2" class="btnTrajet" href="../ah.php">Rechercher un trajet</a>
</div>
<div id="recap">
<div class="recapLine">
<img class="recapIcon" src="../car.png">
<p>Vous avez <?php echo getTrajetsProposes($db, $mail); ?> trajets proposés à effectuer.</p>
</div> </div>
<div class="recapLine"> <div id="recap">
<img class="recapIcon" src="../car.png"> <div class="recapLine">
<p>Vous avez <?php echo getTrajetsReserves($db, $mail); ?> trajets réservés à effectuer.</p> <img class="recapIcon" src="../car.png">
<p>Vous avez <?php echo getTrajetsProposes($db, $mail); ?> trajets proposés à effectuer.</p>
</div>
<div class="recapLine">
<img class="recapIcon" src="../car.png">
<p>Vous avez <?php echo getTrajetsReserves($db, $mail); ?> trajets réservés à effectuer.</p>
</div>
<div class="recapLine">
<img class="recapIcon" src="../mail.svg">
<p>Vous avez <?php echo getMessagesNonLus($db, $mail); ?> messages non lus.</p>
</div>
<div class="recapLine">
<img class="recapIcon" src="../star.png">
<p>Vous avez <?php echo getAvisNonLus($db, $mail); ?> avis non lus.</p>
</div>
</div> </div>
<div class="recapLine"> <form id="choixFormeTestVoiture">
<img class="recapIcon" src="../mail.svg"> <div>
<p>Vous avez <?php echo getMessagesNonLus($db, $mail); ?> messages non lus.</p> <input type="radio" name="TabCheck" onclick="ShowTab(1)"/>Ajouter une voiture
<input type="radio" name="TabCheck" onclick="ShowTab(2)"/>Modifier ma voiture
<input type="radio" name="TabCheck" onclick="ShowTab(3)"/>Afficher ma voiture
</div>
</form>
<div id="addVoiture" style="display: none;">
<h1>Ajouter une voiture</h1>
<fieldset>
<form action="tableauBord.php" method="post">
<table>
<tr>
<td><p>matricule :</p></td>
<td><input type="text" name="matricule"/></td>
</tr>
<tr>
<td><p>marque :</p></td>
<td><input type="text" name="marque"/></td>
</tr>
<tr>
<td><p>modele :</p></td>
<td><input type="text" name="modele"/></td>
</tr>
<tr>
<td><p>nombre de places :</p></td>
<td><input type="number" maxlength="1" name="nbplaces"/></td>
</tr>
<tr>
<td><p>année de fabrication :</p></td>
<td><input type="number" nmaxlength="4" name="anneefab"/></td>
</tr>
<tr>
<td><p><input type="submit" name="submitadd" value="ajouter une voiture"></td>
</tr>
</table>
</form>
</fieldset>
</div> </div>
<div class="recapLine"> <div id="changeVoiture" style="display: none;">
<img class="recapIcon" src="../star.png"> <h1>Modifier une voiture</h1>
<p>Vous avez <?php echo getAvisNonLus($db, $mail); ?> avis non lus.</p> <fieldset>
<form action="tableauBord.php" method="post">
<table>
<tr>
<td><p>matricule :</p></td>
<td><input type="text" name="matricule"/></td>
</tr>
<tr>
<td><p>marque :</p></td>
<td><input type="text" name="marque"/></td>
</tr>
<tr>
<td><p>modele :</p></td>
<td><input type="text" name="modele"/></td>
</tr>
<tr>
<td><p>nombre de places :</p></td>
<td><input type="number" maxlength="1" name="nbplaces"/></td>
</tr>
<tr>
<td><p>année de fabrication :</p></td>
<td><input type="number" nmaxlength="4" name="anneefab"/></td>
</tr>
<tr>
<td><p><input type="submit" name="submitchange" value="modifier une voiture"></td>
</tr>
</table>
</form>
</fieldset>
</div> </div>
</div> <div id="showVoiture" style="display: none;">
<form id="choixFormeTestVoiture"> <h1>Afficher ma voiture</h1>
<div> <fieldset>
<input type="radio" name="TabCheck" onclick="ShowTab(1)"/>Ajouter une voiture <form action="tableauBord.php" method="post">
<input type="radio" name="TabCheck" onclick="ShowTab(2)"/>Modifier ma voiture <table>
<input type="radio" name="TabCheck" onclick="ShowTab(3)"/>Afficher ma voiture <tr>
<td><p><input type="submit" name="submitshow" value="afficher ma voiture"></td>
</tr>
</table>
</form>
</fieldset>
</div> </div>
</form>
<div id="addVoiture" style="display: none;">
<h1>Ajouter une voiture</h1>
<fieldset>
<form action="tableauBord.php" method="post">
<table>
<tr><td><p>matricule :</p></td><td><input type="text" name="matricule"/></td></tr>
<tr><td><p>marque :</p></td><td><input type="text" name="marque"/></td></tr>
<tr><td><p>modele :</p></td><td><input type="text" name="modele"/></td></tr>
<tr><td><p>nombre de places :</p></td><td><input type="number" maxlength="1" name="nbplaces"/></td></tr>
<tr><td><p>année de fabrication :</p></td><td><input type="number" nmaxlength="4" name="anneefab"/></td></tr>
<tr><td><p><input type="submit" name="submitadd" value="ajouter une voiture"></td></tr>
</table>
</form>
</fieldset>
</div>
<div id="changeVoiture" style="display: none;">
<h1>Modifier une voiture</h1>
<fieldset>
<form action="tableauBord.php" method="post">
<table>
<tr><td><p>matricule :</p></td><td><input type="text" name="matricule"/></td></tr>
<tr><td><p>marque :</p></td><td><input type="text" name="marque"/></td></tr>
<tr><td><p>modele :</p></td><td><input type="text" name="modele"/></td></tr>
<tr><td><p>nombre de places :</p></td><td><input type="number" maxlength="1" name="nbplaces"/></td></tr>
<tr><td><p>année de fabrication :</p></td><td><input type="number" nmaxlength="4" name="anneefab"/></td></tr>
<tr><td><p><input type="submit" name="submitchange" value="modifier une voiture"></td></tr>
</table>
</form>
</fieldset>
</div>
<div id="showVoiture" style="display: none;">
<h1>Afficher ma voiture</h1>
<fieldset>
<form action="tableauBord.php" method="post">
<table>
<tr><td><p><input type="submit" name="submitshow" value="afficher ma voiture"></td></tr>
</table>
</form>
</fieldset>
</div>
</div> </div>
</div> </div>
</body> </body>
</html> </html>

Loading…
Cancel
Save