Unsupported scripts and control panel web app for a hosting company
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

alltickets.php 548B

1234567891011121314151617181920
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. define('TITLE', ' All Tickets');
  4. addDashboardItem('Useful links', 'Support center', 'support');
  5. addDashboardItem('Useful links', 'Raise a ticket', 'tickets');
  6. addDashboardItem('Frequently asked questions', 'Can I file support requests without using the control panel?', 'support/005');
  7. addDashboardItem('Frequently asked questions', 'How do I reopen a ticket?', 'support/014');
  8. require_once('lib/header.php');
  9. require_once('pages/alltickets.php');
  10. require_once('lib/footer.php');
  11. ?>