PDO参数:
$cto=new PDO("MysqL:host=$servername;dbname=$dbname",$username,$password);
与数据库交互
$csql=$cto->prepare("INSERT INTO `users`(`username`, `password`, `class`, `is_on`, `time_log`, `IP`)
VALUES (:name,:pass,:class,0,0,'0')");
$pr=[
':name' => $_POST['username'],
":pass" => $_POST['password'],
":class" => $_POST["class"],
];
$csql->execute($pr);
$cto=null;
我的问题是,我目前在执行中使用数组$pr,我可以使用bindParam传递此数组
$csql->bindParam($pr);
$csql->exec();
感谢您的时间.
解决方法:
是的你必须为每个bindparam()做一行,如果你想在数组中绑定几个值,在excute()中尝试它