Multiple field Arrays
am 04.11.2007 22:58:54 von Kevin DavisHello,
I have an quick question.
I have the following form:
Then I try to split up the data:
foreach ($_POST['name'] as $namef)
{
echo $namef."
;
}
Here is the problem. The multiple fields seem not to be splitting up
because the output seems to coming out in a single blob.
What I would like to do is split up the array based upon the field
entry so I can insert the info into the database.
Thank you.
Kevin