我有两个数组,我需要将数组值发送到 PHP。当我打印从 PHP 返回的值时,它会打印一个空字符串。我怎么才能得到它?我的代码如下。
$.ajax({
type: "POST",
url: "test2.php",
data: {
price: [101, 69, 51],
id: [1, 2, 3]
},
success: function(response) {
alert(response);
}
});
在 PHP 中
$id=mysql_real_escape_string($_POST['id'][0]);
echo $id;