You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- session_start();
- if($_SESSION['status']!=1)
- header("location:index.php");
- $status=$_SESSION['status'];
- ?>
-
- <?php
- if($status == 1):
- ?>
- <div class="alert alert-success">Connecté !</div>
-
- <?php
- elseif($status == 0):
- ?>
- <div class="alert alert-info">Permissions insufisantes.</div>
-
- <?php
- endif;
- ?>
- <br /><br />
|