Unsupported scripts and control panel web app for a hosting company
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.

categories.php 390B

123456789101112131415161718192021
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/common.php');
  4. $categories = getCategoriesInfo();
  5. define('TITLE', 'Issue tracker :: View Categories');
  6. addDashboardItem('Actions', 'Add Category', 'addcategory');
  7. include_once('res/commonDashboard.php');
  8. require_once('lib/header.php');
  9. require_once('pages/viewcategories.php');
  10. require_once('lib/footer.php');
  11. ?>