示例#1
0
 public function edit_user()
 {
     include_once "./functions/account/edit.php";
     include_once "models/account/account_info.php";
     $account = new Account_info();
     $main = new Edit();
     $account->edit_result = $main->edit_user($_POST);
     return View("account/main", $account);
 }