How do i do this:
I want the user to be able to add form fields as he wishes
by reloading the page each time he wants a new one.
should work something like this
<input type=text name=arrayname[0] value=stuff>
<input type=text name=arrayname[1] value=stuff2>
<input type=text name=arrayname[2] value=stuff4>
but how do i pull this array from php?
thank you
Dan