<?php
$q=mysql_query("SELECT * FROM `webpanel` ORDER BY post DESC");
echo "<table style='width:100%' cellspacing='0' cellpadding='0'><tbody>";
while ($post = mysql_fetch_array($q)){
echo "<tr><td class='webpanel'><a href='".htmlspecialchars($post['url'])."'><img src='/system_panel/img/icon/$post[id].png' width='24' height='24'></a></td></tr>";
}
echo "</tbody></table>";
?>