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.
 
 
 
 
 
 

8 lines
256 B

  1. <?php
  2. # "Passes" showing table of all scheduled passes (and landing page)
  3. include_once('views/header.php');
  4. $page = isset($_GET['page']) ? intval($_GET['page']) : 1;
  5. require('controllers/pass_controller.php');
  6. include_once('views/footer.php')
  7. ?>