Unsupported scripts and control panel web app for a hosting company
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/account.php');
  4. define('TITLE', 'Referral scheme');
  5. addDashboardItem('Useful links', 'Account overview', '');
  6. addDashboardItem('Useful links', 'Billing', 'billing');
  7. require_once('lib/header.php');
  8. require_once('pages/refinfo.php');
  9. require_once('pages/refusers.php');
  10. require_once('lib/footer.php');
  11. ?>