So, im using $.tableDnD.serialize() function, to get the current order of the Table TR-s, and want to post to a php function alongside with another variable.
$("#articlestable").tableDnD({
onDragClass: "drag",
onDrop: function(table, row) {
$.post('<?php echo HTML_ROOT; ?>/admin/cikkek/updateOrder/', {
pagesid : "1",
arr : $.tableDnD.serialize()
});
}
});
If i am sending the serialized data only, there is no problem with the access. According to firebug the sent data:
arr articlestable[]=1&articlestable[]=2&articlestable[]=4&articlestable[]=3
pagesid 1
The main question, how can i get the data in php? I thought:
$pagesid = $_POST["pagesid"];
$orderarr = $_POST["arr"]["articlestable"];
Thanks for help, and sorry for my english.