Oppaitime's version of Gazelle
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.

index.php 263B

12345678910111213141516
  1. <?
  2. enforce_login();
  3. if (isset($_REQUEST['action'])) {
  4. switch ($_REQUEST['action']) {
  5. case '':
  6. include('upload_1GB.php');
  7. break;
  8. default:
  9. error(404);
  10. break;
  11. }
  12. } else {
  13. require(SERVER_ROOT.'/sections/slaves/slaves.php');
  14. }
  15. ?>