I've got a php page, which reads data from a txt file, using $GetLine[1] etc variables. The data from the file is then put into form text fields, named Name, Email, Comments. This is looped until the whole file is read, and there's lots of text fields named "name", "email" etc within one form.
I then want to "submit", after possibly editting the fields and write to file.
Obviously I can't have several fields with the same name in the same form, but not sure how do get it to work!!!! I've tried using arrays, so each set of fields in the form is named "Name[1], Name[2]" etc but I don't know how to handle that when this has been submitted!
Can anyone help?
Thanks