0
這裏是我的代碼,使用PDO進入MySQL數據庫。MySQL插入不插入
$sql="INSERT INTO dictionary (entry, meaning) VALUES (:entry,:meaning)";
$prep=$db->prepare($sql);
$prep->bindParam(':entry',$entry);
$prep->bindParam(':meaning',$meaning);
try{
$result=$prep->execute();
}
catch(PDOException $e)
{
echo $e->getMessage();
}
但它沒有在數據庫中插入任何東西。可能是什麼問題呢?
你不應該把參數綁定在一起嗎? – undefined
我認爲不必要。我已經單獨綁定他們,並且一切都用於工作 – gthuo