17 lines
272 B
PHP
17 lines
272 B
PHP
<?php
|
|
|
|
//
|
|
// this is the main page that gets loaded by end users
|
|
//
|
|
|
|
require_once("apps.inc");
|
|
|
|
commonHeader('Applications' . $title, false);
|
|
appHeader($_GET['the_cat'], $_GET['the_subcat']);
|
|
|
|
include("apps.php");
|
|
|
|
appFooter();
|
|
commonFooter(false);
|
|
|
|
?>
|