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.

get_friends.php 439B

123456789101112131415161718192021
  1. <?php
  2. #declare(strict_types=1);
  3. $DB->query("
  4. SELECT
  5. f.FriendID,
  6. u.Username
  7. FROM friends AS f
  8. RIGHT JOIN users_enable_recommendations AS r
  9. ON r.ID = f.FriendID
  10. AND r.Enable = 1
  11. RIGHT JOIN users_main AS u
  12. ON u.ID = f.FriendID
  13. WHERE f.UserID = '$LoggedUser[ID]'
  14. ORDER BY u.Username ASC
  15. ");
  16. json_die('success', json_encode($DB->to_array(false, MYSQLI_ASSOC)));
  17. #echo json_encode($DB->to_array(false, MYSQLI_ASSOC));
  18. #die();