Quick question
If I have serialized a form using jquery's .serializeArray();
function do I need to do anything to it before I can send it off using jquery's ajax data:
?
e.g. can I send off
[{name: inp1, value: 'val1'}, {name: inp2, value: 'val2'}]
as is, or do I need to preprocess it somehow?
and, in php how would I read this?