I am having a problem with readin an array that has been sent with a post.
in my form I have
<input name="name[]">
<input name="game[]">
<input name="winner[]">
in the processing of the form I can get the vars from the post using a foreach()
that gives me all of the name[] then all the game[] then all the winner[]
What I need is to get each line to input into the db such as
name[0], game[0], winner[0]
then move on to
name[1], game[1], winner[1]
Any help would be appreciated.
thanks Todd