0) { while ($row = mysqli_fetch_assoc($result)) { $json[] = array('id' => $row['id'], 'username' => $row['username']); } $jsonString = json_encode($json); echo $jsonString; } else { echo ""; } } else if ($function === "FindRandomPlayers") { $currentPlayerId = $_POST['playerId']; $sql = "SELECT id, username FROM users WHERE id != $currentPlayerId ORDER BY RAND() LIMIT 10"; $result = mysqli_query($conn, $sql); if (mysqli_num_rows($result) > 0) { $json = array(); while ($row = mysqli_fetch_assoc($result)) { $json[] = array('id' => $row["id"], 'username' => $row["username"]); } echo json_encode($json); } else { echo ""; } } else { echo "No Function Found"; } ?>