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.
 
 
 
 

21 lines
320 B

  1. <?php
  2. session_start();
  3. if($_SESSION['status']!=1)
  4. header("location:index.php");
  5. $status=$_SESSION['status'];
  6. ?>
  7. <?php
  8. if($status == 1):
  9. ?>
  10. <div class="alert alert-success">Connecté !</div>
  11. <?php
  12. elseif($status == 0):
  13. ?>
  14. <div class="alert alert-info">Permissions insufisantes.</div>
  15. <?php
  16. endif;
  17. ?>
  18. <br /><br />