codehaven - php snippets - coding help
Generic filters
Exact matches only

Basic Post Multiple data via ajax

25th April 2014

Jquery - Ajax

jquery icon

This sends two pieces of data

Create two variables called : – idno and newbudgetamount
They will send as a GET and be read like
myweb.com/page.php/?panelid=337&newbudgetamount=newbudgetamount

To send all form values

var formvars = $(“#form1”).serialize(); // add this
and change this : –
“data: “panelid=” + idno+ “&newbudgetamount=” + newbudgetamount,”
To this: – data: formvars,

And to send in json format which also works as simple POST

Was this code snippet helpful?