I need help....
i am trying to sent multiple forms with one submit button using xmlhttlrequest. But everytime it only sends the last form.
Here is my code
for(j=0;j<collection;j++)
{
xhr.open("POST", "showQuestionnaire.php",true);
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send(document.getElementById("submitAnswers"+j).submit());
}
i am trying to submit forms with .submit() on the same page and get data using $_GET. But everytime it skips index 0.
Try following code.