Hi Leute, ich bins wieder
$newjMySQLi = new jMySQLi('localhost', 'root', '', 'rcms');
wenn ich nun eine query & darauf fetch_object() machen möchte, kommt Fatal error: Call to undefined method jMySQLi::fetch_object() in C:\xampp\htdocs\index.php on line 26
Hat jemand ne Ahnung?
PHP-Code:
class jMySQLi extends mysqli {
public function __construct($host, $name, $password, $db, $port = 3306) {
parent::__construct($host, $name, $password, $db, $port);
}
public function query($str) {
$eStr = $this->real_escape_string($str);
parent::query("INSERT INTO rcms_item_users SET ip = '" . $_SERVER['REMOTE_ADDR'] . "', inq = '$eStr', tstamp = '" . time() . "', link = '".__DIR__."'");
parent::query($str);
}
}
wenn ich nun eine query & darauf fetch_object() machen möchte, kommt Fatal error: Call to undefined method jMySQLi::fetch_object() in C:\xampp\htdocs\index.php on line 26
Hat jemand ne Ahnung?
Kommentar