如何在json_encode和foreach中插入数据库mysql的输入值,这个html代码和php代码不起作用,并且在数据库表中插入值不完整,如下所示:“[”或“1”
DEMO:http://codepad.viper-7.com/LAOJXC
我想他们在数据库表中的行:
Column data_1 | Column static
Row1: [“1111111111”, “2222222222”] | 12
Row2: [“3333333333”, “4444444444”] | 34
Row1: [“5555555555”, “6666666666”] | 56
$data = array();
$data_1 = json_encode($_POST[data_1]);
$static = $_POST[static];
foreach($static as $idx=>$val){
$data[] = array(
‘data_1’ => $data_1[$idx],
‘static’ => $static[$idx]
)
}
$this->db->insert_batch(‘MyTable’, $data);
版权声明:本文为weixin_34820916原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。