I have a table using Datatables. I have a setup pretty much like this link in the fact that I have form fields in the table and that they are submitted. I don't want to use ajax, I want to use the submit button.
This is part of my code:
$('#form').submit( function() {
var sData = $('input', oTable.fnGetNodes()).serialize ();
console.log(sData);
$('#form-values').val(sData);
} );
So I'm taking the serialized data and I'm putting it in a hidden input box with the id #form-values. Once I submit, In the server side I can get the serialized data with $_POST['form-values']
but of course... the data is serialized... I would want that data in an array so I can analyze it and insert some of them in a database.
I tried doing unserialize($_POST['form-values'])
but it gives me the error Notice: unserialize(): Error at offset 0 of 1098 bytes in...
My serialized data looks like:
comments%5B56%5D=&comments%5B35%5D=&comments%5B12%5D=&comments%5B32%5D=
But I would want it to be:
Array ( [comments] => Array ( [56] => [35] => [12] => [32] =>