I have created this parent class
class DBMysqli {
private $mysqli;
function __construct($Mysqli) {
$this->mysqli = $Mysqli;
}
public function GET($queryArr){
$query = "SELECT ";
...
$result = $this->mysqli->query($query); //Here I get a run time error!!
echo $this->mysqli->error;
return $result;
}
}
and a child class
class FolderComment extends DBMysqli{
protected $data;
public function __construct() {
$this->mysqli = DB::Simulator(); //works, initiliaze $mysqli
$table = array(
'tables' => 'folder_comments',
'conditions' => '1'
);
$this->data = $this->GET($table);
}
}
I get run time error, stating that the $this->mysqli is null. but I have set it in the child class. I guess this is an OOP understating question..
