Not sure exactly what you are trying to do but it would be more like this:
Code:
foreach($_GET[entry] as $entry){
//access elements like this
$team = $entry[team];
//build sql and execute it here
$sql = 'INSERT INTO table_name (team, place,...) VALUES ('. $team .', '. $place .',....)';
$data = mysql_query($sql);
}
hope that helps