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
Must read Review for Serious PHP Developers
NuSphere PhpED 5.0
: The Staff of php-editors.com recently spent a few days working with NuSphere
PhpED 5.0
(a popular PHP IDE) and
NuCoder 1.4
(a PHP Encoding Utility), read up on all the details.