I am new to php and I am trying to do the following :
I want to create a php page with a html form. This html is dynamically generated. This means that I don't know the amount of fields on the form and
I also don't know the name of the fields.
The generation of the form is no problem, but what I don't know is how to process this form.
How can I do this? I know that I can use $_POST and specify the name of the form field to retrieve the value, but in my case I don't know the name,
so I have no idea how to implement this.
I have a good knowledge of jsp combined with struts or jsf, so I am not a total noob.
Can somebody help me, please?
Thank you.