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 413B

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