コード例 #1
0
ファイル: UserController.php プロジェクト: asancheza/box
 public function profile()
 {
     include_once "models/Users.php";
     $this->vars["user"] = unserialize($_SESSION["user"]);
     include_once "views/profile.php";
     ProfileView::render($this->vars, "showProfile");
 }