I have a form and a button with a function that create dynamically a textfield and set the name with an index like below: corso_1 corso_2 corso_3
So.. a php function get all the value of this form and add all in an array, so how can i get all the value into the dynamic textfields?
name="myfields[]"?$corsi = array(); $while(true){ array_push($corsi, $_POST['corso[$i]']; }