Задавайте вопросы, мы ответим
Вы не зашли.
Как сделать что бы из mysql выводились данные поочереди . Одну строчку из бд выводит. Как сделать что бы выводило все.
<html>
<body>
<?php
require "SampQueryAPI.php";
$sdd_db_host='localhost:3306';
$sdd_db_name='u5553581_123';
$sdd_db_user='u5553_123';
$sdd_db_pass='prostoy';
@mysql_connect($sdd_db_host,$sdd_db_user,$sdd_db_pass);
@mysql_select_db($sdd_db_name);
$result=mysql_query('SELECT * FROM `q`');
while($row=mysql_fetch_array($result))
////Подключение
$query = new SampQueryAPI(($row['ip']), ($row['port']));
$aInformation = $query->getInfo();
$aServerRules = $query->getRules();
////
?>
</body>
</html>
<table style="border: 1px solid gray; height: 50px; width: 900px; background-color: #faf9f9;" border="1">
<tbody>
<tr>
<td id="" style="border: 1px solid gray; background-image: url('img/1.png'); width: 60px; height: 60px;" lang="" dir="" scope="" align="" valign=""> </td>
<td id="" style="border: 1px solid gray; width: 200px;" lang="" dir="" scope="" align="" valign=""><span style="color: #130707; font-family: 'Comic Sans MS'; font-size: 12px; font-weight: bold;"> <?= htmlentities($aInformation['hostname']) ?></span></td>
<td id="" style="border: 1px solid gray; width: 150px;" lang="" dir="" scope="" align="" valign=""><span style="color: #130707; font-family: 'Comic Sans MS'; font-size: 12px; font-weight: bold;"> <?= htmlentities($aInformation['gamemode']) ?></span></td>
<td id="" style="border: 1px solid gray; width: 100px;" lang="" dir="" scope="" align="" valign=""><span style="color: #130707; font-family: 'Comic Sans MS'; font-size: 12px; font-weight: bold;"><?= htmlentities($aInformation['mapname']) ?></span></td>
<td id="" style="border: 1px solid gray; width: 50px;" lang="" dir="" scope="" align="" valign=""><span style="color: #130707; font-family: 'Comic Sans MS'; font-size: 12px; font-weight: bold;"> <?= $aInformation['players'] ?> / <?= $aInformation['maxplayers'] ?></span></td>
<td id="" style="border: 1px solid gray; width: 50px;" lang="" dir="" scope="" align="" valign=""><span style="color: #130707; font-family: 'Comic Sans MS'; font-size: 12px; font-weight: bold;"> <?= $aServerRules['version'] ?></span></td>
<td id="" style="border: 1px solid gray; width: 100px;" lang="" dir="" scope="" align="" valign="">
<p><span style="color: #130707; font-family: 'Comic Sans MS'; font-size: 12px; font-weight: bold;"><?= htmlentities($aInformation['mapname']) ?></span></p>
</td>
<td id="" style="border: 1px solid gray; width: 150px;" lang="" dir="" scope="" align="" valign=""><span style="color: #130707; font-family: 'Comic Sans MS'; font-size: 12px; font-weight: bold;"> Ip Адрес</span></td>
</tr>
</tbody>
</table>
Неактивен
Нужно в цикле вытаскивать данные, которые лежат в $result. Как-то так:
Неактивен