Advertisement
Guest User

index2.php

a guest
Jan 11th, 2015
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. echo $_SESSION['loggedin'];
  4.  
  5. if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == 1) // ausgeloggt
  6. {
  7. include("/templates/index_lo.tpl");
  8. }
  9. else
  10. {
  11. include("/templates/index_li.tpl");
  12. }
  13.  
  14.  
  15.  
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement