这实际上是我使用PDO的第一个项目。
到目前为止,它工作得很好,但是在这种特殊情况下,我最终在数据库中得到以下内容:
我使用的未修改代码是这样的:
<?php
$dbh=new PDO('mysql:host=localhost;dbname=domain-me;port=3306','domain-me','****',array(PDO::MYSQL_ATTR_INIT_COMMAND=>"SET NAMES utf8"));
$sql="
INSERT INTO payments_paypal (
tid ,
txn_id ,
item_number ,
item_name ,
mc_currency ,
mc_gross ,
payment_date ,
payment_status ,
custom ,
payer_email ,
raw_data
)
VALUES (
NULL , ':txn_id', ':item_number', ':item_name', ':mc_currency', ':mc_gross', ':payment_date', ':payment_status', ':custom', ':payer_email', ':raw_data'
);
";
$sth=$dbh->prepare($sql);
$do=$sth->execute(array(':txn_id'=>@$_POST["txn_id"],':item_number'=>$_POST["item_number"],':item_name'=>$_POST["item_name"],':mc_currency'=>$_POST["mc_currency"],':mc_gross'=>$_POST["mc_gross"],':payment_date'=>$_POST["payment_date"],':payment_status'=>$_POST["payment_status"],':custom'=>$_POST["custom"],':payer_email'=>$_POST["payer_email"],':raw_data'=>$_POST["raw_data"],));
?>
编辑:
我现在使用旧的mysql_function进行了处理,现在可以使用了。但是我有这个查询工作正常:
$sql = "INSERT INTO users ( puid,refcode,extuid, login,login_proxy, pass, email)
VALUES (:puid,:refcode,:extuid,:login,:login_proxy,:pass,:email);";
$sth = $dbh->prepare($sql);
$do = $sth->execute(
array(
':puid' => $refuser,
':refcode' => crc32(uniqid('')),
':extuid' => md5(uniqid('')),
':login' => $_POST['login'],
':login_proxy' => $_POST['login'],
':pass' => sha1($_POST['pass']),
':email' => $_POST['email'] ,
)
);
最佳答案
我相信在执行INSERT或UPDATE时,您需要在插入值数组中指定名称,而不能使用冒号。尝试这个:
<?php
$dbh=new PDO('mysql:host=localhost;dbname=domain-me;port=3306','domain-me','****',array(PDO::MYSQL_ATTR_INIT_COMMAND=>"SET NAMES utf8"));
$sql="
INSERT INTO payments_paypal (
tid ,
txn_id ,
item_number ,
item_name ,
mc_currency ,
mc_gross ,
payment_date ,
payment_status ,
custom ,
payer_email ,
raw_data
)
VALUES (
NULL , ':txn_id', ':item_number', ':item_name', ':mc_currency', ':mc_gross', ':payment_date', ':payment_status', ':custom', ':payer_email', ':raw_data'
);
";
$sth=$dbh->prepare($sql);
$do=$sth->execute(array('txn_id'=>@$_POST["txn_id"],'item_number'=>$_POST["item_number"],'item_name'=>$_POST["item_name"],'mc_currency'=>$_POST["mc_currency"],'mc_gross'=>$_POST["mc_gross"],'payment_date'=>$_POST["payment_date"],'payment_status'=>$_POST["payment_status"],'custom'=>$_POST["custom"],'payer_email'=>$_POST["payer_email"],'raw_data'=>$_POST["raw_data"],));
?>
关于php - 为什么我在此PDO插入语句中以参数名而不是它们的值结尾?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6481160/