jqueryからの投稿データのこのURLがあります。$_POST['reciver']
値ごとにマルチを取得する方法
test.php?peygham=&onvan=&startdate=&enddate=&sal=5&nimsal=1&visible=1&pages=1&reciver%5B%5D=687&reciver%5B%5D=695&reciver%5B%5D=690
jquery:
$('#to option').prop('selected',true);
$.post("save.php",{
peygham:$('#peygham').val(),
onvan:$('#onvan').val() ,
startdate:$('#startdateM').val() ,
enddate:$('#enddateM').val(),
sal:$('#sal').val() ,
nimsal:$('#nimsal').val(),
visible:$('#visible').val() ,
pages:$('#pages').val() ,
reciver:$('#to').val() /* => MULTI VALUE */
},
function(data){
$('#message').show();
$('#message').html(data.message);
setTimeout(function() {$('#message').hide();}, 10000);
//window.location = "http://aou.ir/manage/preForm/test.php";
},'json');
});