change this line
$result = mysql_query("SELECT * FROM league_entries ORDER BY pts, tens DESC",$db);
to this
$result = mysql_query("SELECT * FROM league_entries ORDER BY pts, tens DESC",$db) or die(mysql_error());
to see a better error, and also on your
while ($myrow = mysql_fetch_array($result1)) {
line, you are using $result1, when it should be $result