函数bindParam()在非对象上

时间:2013-05-03 01:34:47

标签: php mysql pdo sqlplus

不确定我缺少什么,我在其他论坛或谷歌上找不到任何答案。 ._。 我想在查询中添加什么?

$STH->bindParam(1, $name);
$STH->bindParam(2, $comment);
$STH = $db-("INSERT INTO comment ('name', 'comment') VALUES (:name, :comment)");
$STH->execute();

1 个答案:

答案 0 :(得分:1)

序列应该是这样的:

$STH = $db->prepare("INSERT INTO comment ('name', 'comment') VALUES (:name, :comment)"); 
$STH->bindParam(':name', $name,PDO::PARAM_STR); 
$STH->bindParam(':comment', $comment,PDO::PARAM_STR); 

$STH->execute();