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
| <?php
session_start();
//CONNEXION BASE
$conn = "host=localhost port=5432 dbname=ecommerce user=postgres password=aze123";
$dbconn = pg_connect($conn) or die ("Connexion impossible");
//
if(isset($_SESSION['accesninscrit']))
{
if($_SESSION['accesninscrit']!=1 && $_SESSION['accesninscrit']!=2)
{
echo '<div style="width:400px; height:50px; font-size:20px; text-align:center; background: #EBEBEB; margin:auto; margin-top: 100px; padding:20px; ">
Vous n\'etes pas autorise à utiliser cette page.
<a href="index.php">Cliquez ici</a> pour etre redirige
</div>';
exit(0);
}
} else {
echo '<div style="width:400px; height:50px; font-size:20px; text-align:center; background: #EBEBEB; margin:auto; margin-top: 100px; padding:20px; ">
Vous n\'etes pas autorise à utiliser cette page.
<a href="index.php">Cliquez ici</a> pour etre redirige
</div>';
exit(0);
}
if (isset($_GET['action']))
{
if($_GET['action']=="deconnection") //SI L'UTILISATEUR SOUHAITE SE DECONNECTER
{
setcookie('membre', NULL, -1);
session_destroy ();
header('Location: index.php');
}
if($_GET['action']=="connexion") //SI L'UTILISATEUR SOUHAITE SE CONNECTER
{
if (!isset($_COOKIE['membre']) )
{
if (!isset ($_SERVER['PHP_AUTH_USER']))
{
header('WWW-Authenticate: Basic realm="Veuillez vous authentifier"');
header('HTTP/1.0 401 Pas authorisé');
echo '<div style="width:400px; height:50px; font-size:20px; text-align:center; background: #EBEBEB; margin:auto; margin-top: 100px; padding:20px; ">
Vous avez abandonne l\'authentification.
<a href="lesite.php">Cliquez ici</a> pour etre redirige
</div>';
exit;
}
... |
Partager