时间:2021-07-01 10:21:17 帮助过:25人阅读
load->view('index'); } function checklogin(){ $this->load->model('test_m'); $user=$this->test_m->user_select($_POST['name']); if($user){ if($user[0]->upass==$_POST['pword']){ echo "password right"; $this->load->library('session'); $arr=array('uid'=>$user[0]->uid); $this->session->set_userdata($arr); echo "
"; echo $this->session->userdata('uid'); }else{ echo "password wrong"; } }else{ echo "user not exist"; } }} ?>
换下提交按钮的名字试下,用firebug监视一下网络
换下提交按钮的名字试下,用firebug监视一下网络
ok了,因为js文件把submit功能给block掉了