예제 #1
0
파일: Login.php 프로젝트: xjlelf/php_test
 public function run()
 {
     $this->_init();
     $users = new UserModel();
     $info = $users->userLogin($this->data['id']);
     $this->echoView($info);
 }
예제 #2
0
파일: Login.php 프로젝트: xjlelf/php_test
 public function run()
 {
     $users = new UserModel();
     $info = $users->userLogin($this->data['id']);
     return $info;
 }