represent the post parameters from firebug console, for better understanding.
The html is something like this.The number of input fields are
undefined, that means I don’t know how many input field elements will be sent.
Their are dynamically created by some variables and configurations.
I need, the id of the field, for example edit_1 and his corresponding value from edit_1=title+fanSERREFDFDAKLLLTGHGH, to make some database operations.
I also try to use .serializeArray from jquery library, to send data as JSON, but in the console for post parameters I see
data [object Object]
data [object Object]
data [object Object]
data [object Object]
so I can’t identify correctly the json data form, so I can parse in php.