If you have a form with some fields like textareas etc:
... and you have a javascript that lets you add inputfields and textareas (with the same name and id's) when you click on a link to make that happen,Code:<p><label for="paragraph">Paragraph: </label><textarea name="paragraph" id="paragraph"></textarea></p>
Is there a possibility in php to read that form out with those new javascript created formfields, like:
So if you create more than one paragraph with the same id's and names, how can you do that?Code:$paragraph = $_POST['paragraph'] ;
Is it possible with something like that?
Code:$amountPar = count('$_POST['paragraph']'); for(i=0; i<$amountPar; i++){ $paragraph[i] = $_POST['paragraph']; }








Bookmarks