BioTorrents.de’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 348B

1234567891011121314151617181920
  1. <?php
  2. #declare(strict_types=1);
  3. if ($_GET['type']) {
  4. switch ($_GET['type']) {
  5. case 'posts':
  6. // Load post history page
  7. include('post_history.php');
  8. break;
  9. default:
  10. echo json_encode(
  11. array('status' => 'failure')
  12. );
  13. }
  14. } else {
  15. echo json_encode(
  16. array('status' => 'failure')
  17. );
  18. }