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.

account.php 678B

123456789101112131415161718192021222324
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/common.php');
  4. require_once('lib/database.php');
  5. require_once('lib/account.php');
  6. define('TITLE', 'My Account');
  7. addDashboardItem('Frequently asked questions', 'How do I pay outstanding bills?', 'support/008');
  8. addDashboardItem('Useful links', 'Change password', 'changepass');
  9. addDashboardItem('Useful links', 'Apply discount', 'discount');
  10. addDashboardItem('Useful links', 'My invoices', 'invoices');
  11. addDashboardItem('Useful links', 'Referrals', 'ref');
  12. require_once('lib/header.php');
  13. require_once('pages/prefs.php');
  14. require_once('pages/packages.php');
  15. require_once('lib/footer.php');
  16. ?>