How could I sent to a php page the array titolari?
var titolari = $('#titolari').sortable('toArray');
$("#formazione-realtime").load('formazione-realtime.inc.php', {
"$titolari[]" : titolari
});
The php page is loaded correctly, but the php page seems not to receive the array... how do I take it into my php script?