View Single Post
  #2 (permalink)  
Old 2008-04-22, 09:28 PM
strasm strasm is offline
Senior Member
 
Join Date: Dec 2004
Posts: 199
strasm is an unknown quantity at this point
Default

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
Reply With Quote