カテゴリー:
Fatal error
閲覧数:247 配信日:2022-12-01 18:23
遭遇例 3
エラーメッセージ
( ! ) Fatal error: Uncaught PDOException: SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens
エラー発生するコード
$sql = "UPDATE tag SET tag_zip:tag_zip, tag_description=:tag_description WHERE tag_id=:tag_id";
修正例
修正前。「=」が抜けている。
tag_zip:tag_zip,
修正後
tag_zip=:tag_zip,