How to handle dynamic form data with repeating fields?
In the second scenario you’re getting the only second title, because you need to have unique field names for each field, or one will override the other(s) in $_POST. One way to resolve this is to have a single hidden field called perhaps max_id in which you store the highest id number that you’ve used … Read more