Hello :) I have problem with my PHP code related to SampQueryAPI.php. I've tryied to fetch playerlist with this code
<php>
$aPlayers = $query->getDetailedPlayers();
foreach ($aPlayers as $sValue)
{
</php>
<tr>
<td>{$sValue['playerid']}</td>
<td>{$sValue['nickname']}</td>
<td>{$sValue['score']}</td>
<td>{$sValue['ping']}</td>
</tr>
<php>
}
</php>
This code is fetching only one player from server while there is playing about 20 players... How can i fix it?