私はphpアプリケーションでsimpleSQL-PDO
クラス
を使用しており、次のコードで使用しています:
$where['username']=$_POST['username'];
$where['password']=md5($_POST['password']);
$DB = new DB();
$res=$DB->buildQuery('tbl_admin',$where);
localhost では正常に動作していますが、オンライン サーバーでは次のエラーが発生します。
Fatal error: Using $this when not in object context in DB.php on line 230
行番号 DB クラスの 230 は次のとおりです。
$ item = $ this- > instance- > quote ($ this- > escape ($ item));
私の問題はどこですか?