こんにちは、mysqlデータベースからファイル内のデータをフィルタリングするために使用されるphpファイルにクエリがあります
$_SESSION['sc_session'][$this->Ini->sc_page]['grid_deposit']['where_orig'] = " where Reg_no = \"69\"";
この行で Reg_no = \"69\"" の場合、69 を任意の値に変更するとデータが変更されますが、69 の代わりに配列を使用すると、このように機能しません
$_SESSION['sc_session'][$this->Ini->sc_page]['grid_deposit']['where_orig'] = " where Reg_no = " . $fc . "";
しかし、$fc = 69; を使用すると、エコー $fc;
次に、その行では機能しますが、これをコーディングする方法を教えてください私が得るエラーは
Error
Error while accessing the database:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
select count(*) from deposit where Reg_no =