\n";
$total = 0;
foreach($teams as $team) {
show_team_xml($team);
$total++;
if ($total == 100) break;
}
echo "\n";
exit();
}
page_head("Search Results");
if (count($teams)) {
echo "
Search results for '".strip_tags($team_name)."'
";
echo "";
echo "You may view these teams' members, statistics, and information.";
echo "
";
if (count($teams)==100) {
echo "
More than 100 teams match your search.
The first 100 are shown.
";
}
}
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();
?>