public function show() { include_once "views/app.php"; $app = new App(); $result = $app->show(); $this->user = unserialize($_SESSION["user"]); $this->vars = array(); $this->vars["user"] = $this->user; $this->vars["result"] = $result; AppView::show($this->vars); }