I have a form with a textarea.
The textarea has multiple words separate by a comma, see below...
<form method="post" action="send.php">
<textarea>data1, data2, data3</textarea>
<input type="submit" value="submit" />
</form>
What I need to do is to create some kind of loop where the form gets submitted multiple times...
Each time is will send a different value from the textarea.
For example:
Start:
1. data1 .. Submit
2. data2 .. Submit
3. data3 .. Submit
End.
Is there a way to do this in php or php and javascript?