Search results for '$team_name'";
echo "
";
echo "You may view these teams' members, statistics, and information.";
echo "
";
while ($team_possible = mysql_fetch_object($result_list)) {
if ($total >= 100) {
$too_many = true;
break;
}
echo "- ";
echo "id>";
echo "$team_possible->name
";
$total++;
}
echo "
";
if ($too_many) {
echo "This is only a partial list of the possible teams you ";
echo "were searching for. You will need to narrow your search ";
echo "criteria to get more accurate results.
";
}
}
echo "End of results
";
echo "If you cannot find the team you are looking for, you may create a team ";
echo "by clicking here.";
page_tail();
?>