index.php 272 B

1234567891011121314151617
  1. <?php
  2. //
  3. // this is the main page that gets loaded by end users
  4. //
  5. require_once("apps.inc");
  6. commonHeader('Applications' . $title, false);
  7. appHeader($_GET['the_cat'], $_GET['the_subcat']);
  8. include("apps.php");
  9. appFooter();
  10. commonFooter(false);
  11. ?>