if($result)
{
$rows = mysqli_num_rows($result);
echo "<table><tr><th>Id</th><th>Номер аккаунта</th><th>Время</th><th>Суть</th></tr>";
for ($i = 0 ; $i < $rows ; ++$i)
{
$row = mysqli_fetch_row($result);
echo "<tr>";
for ($j = 0 ; $j < 4 ; ++$j) echo "<td>$row[$j]</td>";
echo "</tr>";
}
echo "</table>";
mysqli_free_result($result);
}
как сделать сортировку от конца
if ($result = mysqli_query($query)) {
$rows = mysqli_fetch_row($result);
foreach ($rows as $row) {
echo $row['id'];
echo $row['num'];
... тут сами уже решайте в каком виде выводить
}