The select statement I noted earlier will order the result into a array (highest record first). All you need to do is loop through the array and print each index value.
$query = "SELECT name1, record FROM topscores ORDER BY record DESC";
$result = mysql_query($query);
while ($row = mysql_fetch_array ($result)) {
PRINT "$row["name1"] - $row["record"]<BR>\n";
}
Jon