我有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];
但返回标签而不是数组中的数据? 什么是正确的方式传递数组2维并将其重新收录到PHP中
答案 0 :(得分:2)
最简单方便的方法是将数组编码为JSON,将其传递给PHP脚本并在其中解码。