【发布时间】:2017-03-30 09:33:37
【问题描述】:
我想将数组存储在 mysql 数据库中。有键有值
以下是我使用的代码
$name= "prashant";
$lname= "kumbhar";
$test = "testing";
$array = array('fname'=>$name,'lname'=>$lname,'test' =>$testing);
使用 php 将这些 $array 存储在数据库中
【问题讨论】: