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.

1234567891011121314151617181920212223242526272829303132333435
  1. <?PHP
  2. define('SUPPORT_TITLE', 'How do I pay outstanding bills?');
  3. define('SUPPORT_BTITLE', 'Paying outstanding bills');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. addDashboardItem('Useful links', 'Billing', 'billing');
  6. if (!defined('UID')) {
  7. addDashboardItem('Useful links', 'Login', 'login');
  8. }
  9. $sbody = <<<SUPPORT
  10. <p>
  11. After you have been notified of an outstanding bill by e-mail, you can log
  12. in to the control panel to pay it. To do this, log in and select the
  13. 'Billing' option on the right hand side of the main menu. In the 'Bills'
  14. section, you should see the current bill (and any previously issued bills).
  15. In the right hand column ('status') there will be a link to pay using paypal.
  16. </p>
  17. <p>
  18. Once you have paid using paypal, it make take up to twenty four hours after
  19. the payment has cleared for the bill status to be updated. For this reason,
  20. please ensure that you pay any bills at least one day before the date they're
  21. due on, to ensure uninterrupted service.
  22. </p>
  23. SUPPORT;
  24. define('SUPPORT_BODY', $sbody);
  25. ?>