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.

ajax_add_notes.php 396B

12345678910111213141516171819202122232425262728
  1. <?php
  2. #declare(strict_types=1);
  3. if (!check_perms('admin_reports') || empty($_POST['id'])) {
  4. print
  5. json_encode(
  6. array(
  7. 'status' => 'failure'
  8. )
  9. );
  10. die();
  11. }
  12. $ID = (int)$_POST['id'];
  13. $Notes = $_POST['notes'];
  14. $DB->query("
  15. UPDATE reports
  16. SET Notes = ?
  17. WHERE ID = ?", $Notes, $ID);
  18. print
  19. json_encode(
  20. array(
  21. 'status' => 'success'
  22. )
  23. );
  24. die();