예제 #1
0
파일: user_c.php 프로젝트: Diaosir/ziku
 public function updateUserType($id)
 {
     $this->authority(10);
     $type = Util::fetch_post('type');
     $user_table = new UserTable();
     $user_table->update_type($id, $type);
     Util::go_back();
 }