public function _construct($header, $footer){
$this->header = $header;
$this->footer = $footer;
}The problem is that i get error of undefined values when i use header and footer in include functionpublic function render(){
include $this->header;
$this->page->render();
include $this->footer;
}
I would appreciate any help


Sign In
Create Account


Back to top









