0

I have a form with multiple fields, whereby fields can be added.

The FORM is as follows:

<form id="myForm" action="myfile.php" >
<input . . > 
<select>. . . </select>
</form>

myfile.php has the following code:

foreach ($_POST as $key => $value) {
echo $key." takes the <b>".$value."</b> Value"; 
}

This simple code processes all the entries of the form regardless how many.

Now, what I want is:

When I click on the submit button, instead of sending the form's content to a script, to actually get that array and pass it AJAX without having to write every single key and its value manually.

I hope it makes sense

asked Mar 10, 2014 at 1:00
2

2 Answers 2

1

I think what you are looking for is serialize()

jQuery(function ($) {
 //submit handler
 $('#myForm').submit(function (e) {
 //prevent default submit
 e.preventDefault();
 $.ajax({
 url: $(this).attr('action'),
 type: 'POST',
 data: $(this).serialize(),
 ....
 })
 });
})
answered Mar 10, 2014 at 1:02
Sign up to request clarification or add additional context in comments.

2 Comments

I just got an answer from stackoverflow.com/questions/5004233/… Thanks
@JanvierDesigns Ok but I think unless you delete the question this answer should still be marked as the correct answer.
0

You can use jQuery serialize() method

$("#myForm").submit(function(e){ //To listen submit event
 e.preventDefault(); //To prevent default browser action
 var data=$(this).serialize(); // To get form data
 $.post($(this).attr('action'),data,function(data){ //To perform post
 $('#result').html(data); //Result data
 });
});
answered Mar 10, 2014 at 1:04

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.