And the line underneath has a double set of ; .....oh, I see...
Why do you compile the $list, then echo it?
Suggestion:
<?PHP
$conn = @mysql_connect("host", "username", "password") or die("could not connect");
$rs = @mysql_select_db("tablename", $conn) or die("could not select database");
$sql="select * from es_usersites";
$rs=mysql_query($sql,$conn) or die("could not execute query");
while($row= mysql_fetch_array($rs))
{
echo "<tr><td>".$row["username"]."</td><td class=navigation align=\"left\"><a href=\".$row["address"].\">".$row["title"]."</a></td></tr>";
}
?>
. and do you have the <table> and </table>?
knutm 😉