LOL! You may want to REPLACE this:
PHP Code:
while ($file = $db->fetch_array($result))
{
$alldownloads .= '<tr><td><a href="downloads.php?do=file&id='.$file['id'].'"></a></td><td></td>'.$file['downloads'].'</tr>";
}
WITH:
PHP Code:
while ($file = $db->fetch_array($result))
{
$alldownloads .= '<tr><td><a href="downloads.php?do=file&id='.$file['id'].'">'.$file['name'].'</a></td><td>'.$file['downloads'].'</td></tr>";
}