if (isset($this->database_class)) { $this->db = new $this->database_class; //LINE 58 } WHY I GET THIS ERROR?
Without error:
$class = $this->database_class; $this->db = new $class;
P.S. OS Windows
Log in to post a comment.
if (isset($this->database_class)) {
$this->db = new $this->database_class; //LINE 58
}
WHY I GET THIS ERROR?
Without error:
$class = $this->database_class;
$this->db = new $class;
P.S. OS Windows