|
楼主 |
发表于 2012-11-14 15:39:04
|
显示全部楼层
- function __construct()
- {
- parent::__construct();
- }
- function index()
- {
- //$this->output->enable_profiler(TRUE);
-
- $this->load->view('login');
-
- }
- function dologin()
- {
- $username=$_POST['username'];
- $password=$_POST['password'];
-
- $data=array(
- 'username'=>$username,
- 'password'=>$password
- );
- $result=$this->m_model->Soap_Login($data);
-
-
-
- if( $result==0)
- {
- $this->load->view('main');
-
- }
- else
- echo $result;
- }
复制代码 |
|