我有 javascript 数组 2 维 == > 记录
我想将其数据插入数据库我使用 jquery 发布此代码
var data={"records" : records};
$.post('new_puplic_insert.php',data,function(message){
alert(message);
});
在 php 文件中,我想处理这个数组示例
$dataarray=$_POST['records'];
echo $dataarray[0][0];
但返回标签而不是数组中的数据?传递二维数组并将其接收到php中的正确方法是什么