Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
何が欠けているのかわからず、他のフォーラムやグーグルで答えが見つかりませんでした。._. クエリに何を追加すると思いますか?
$STH->bindParam(1, $name); $STH->bindParam(2, $comment); $STH = $db-("INSERT INTO comment ('name', 'comment') VALUES (:name, :comment)"); $STH->execute();
シーケンスは次のようになります。
$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();