יש לי את הדף הזה:
http://84.94.230.229/~yairsh/cs/print_server.php
עכשיו אני רוצה שזה יהיה בסדר יורד
יעני שזה ידפיס בטבלה אבל לפי סדר של המספרים בסדר יורד
לדוגמא:
66
65
64
60
55
עכשיו זה נראה ככה:
15
8
20
17
19
יש אפשרות כזאת???
הלולאה שלי נראית כך:
PHP קוד:
include ("config.php");
$query = mysql_query("SELECT * FROM server");
while ($row = mysql_fetch_array($query))
{
$active = $row['active'];
if ($active == 'פעיל')
{
echo <<<html
<tr>
<td align=center>{$row['id']}</td>
<td align=center>{$row['name']}</td>
<td align=center>{$row['ip']}</td>
<td align=center>{$row['cp']}</td>
<td align=center>{$row['nop']}</td>
</tr>
html;
}