Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. session_start();
  3.  
  4. if (!(isset($_SESSION['login']) && $_SESSION['login'] != '')) {
  5. header("Location: signin/");
  6. exit();
  7. } else {
  8. $shopperid = ($_SESSION['shopperid']);
  9. }
  10.  
  11. require_once('inc/config.php');
  12. require_once(ROOT_PATH . 'inc/header.php');
  13. require_once(ROOT_PATH . 'inc/database.php');
  14. require_once('inc/footer.php');
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement