Top 10 fejl (MYSQL)
<?include(\"cont.php\");
$result = mysql_query(\"select id, kunstner, title, kat, hits from musicchart ORDER by hits desc LIMIT 10\") or die(mysql_error());
while ($row = mysql_fetch_array($result)) {
print \"
<table border=\\\"0\\\">
<tr>
<td width=\\\"120\\\"><font face=\\\"Arial\\\"><b>
<p>$row[kunstner]</p>
</td>
<td width=\\\"120\\\"><font face=\\\"Arial\\\"><b>
<p>$row[title]</p>
</td>
<td width=\\\"120\\\"><font face=\\\"Arial\\\"><b>
<p>$row[kat]</p>
</td>
<td width=\\\"120\\\"><font face=\\\"Arial\\\">
<p>$row[hits]</p>
</td>
</tr>
</table><font face=\\\"Arial\\\">\";
}
?>
