This one is a really simple question (I hope), but as just laening/getting to grips with Jquery I apologise in advance.
If I have a form e.g.
<form id="form">
<input type="text" name="abc" />
<input type="text" name="def"/>
<input type="text" name="ghi"/>
<input type="submit" name="try" id="try" />
</form>
Anf then send it via JQuery like this
$.post("process.php", $("#form").serialize());
How do I access the data to process the information on process.php? i.e. via a simple PHP insert query (I can write the PHP!), just how do I access the serialized data. Also is there a way to send all the data (from the 3 fields) as i varaiable - I think this is JSON?, if so, how do I then reprocess that info when I call the database to display it.
I have a good grasp of most things so you don't need to be over simplistic, but just some general pointers would help. Thanks