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.

inc.php 346B

123456789101112131415
  1. <?php
  2. // Defines
  3. define('BASE', dirname(__DIR__));
  4. define('BASEURL', $_SERVER['SERVER_NAME']);
  5. // Start the session
  6. session_start();
  7. // Database and Authentication
  8. require_once(BASE . '/inc/db.php');
  9. require_once(BASE . '/inc/user.php');
  10. // Templates
  11. require_once(BASE . '/templates/header.php');
  12. require_once(BASE . '/templates/footer.php');