How about:
code:
$query = "
SELECT T_Name,T_Score,T_Rank
FROM {$config['tbprefix']}teams
ORDER BY T_Rank ASC
";
$sth = $dbh -> do_query($query);
for($i=1;$i<=10;$i++){
echo "<table>";
list ($name[i],$score[i],$rank[i]) = $dbh -> fetch_array($sth);
echo "<tr><td>Rank: $rank[i]</td><td> Team: $name[i]</td><td> Score: $score[i]</td></tr>";
}
echo "</table>";
$dbh -> finish_sth($sth);
Having the $name and $score variables use the $i variable will let you use them as unique links or variables down the road too.