Hi,
I have form.php page with a list of names and points won by those names. I have a textbox field for each of these names.
field look like this:
<input type=text size=5 name=$name value=0>
so i have x amount of fields with unique name for each! i.e:
Name: Jhon | <input type=text size=5 name=Jhon value=0>
Name: Mike | <input type=text size=5 name=Mike value=0>
Now, when user submit the form it goes to addpoints.php. Problem is how do i get the field names with $_POST[''];? Each field has a unique name..
btw, user can update 1 or many fields at once.
Plz give me an example code for this or if you know a better way plz let me know.
Thanks