当前位置:Gxlcms > PHP教程 > CI框架,表达提交没有反应,这是为什么呢,该怎么解决

CI框架,表达提交没有反应,这是为什么呢,该怎么解决

时间:2021-07-01 10:21:17 帮助过:22人阅读

CI框架,表达提交没有反应,这是为什么呢
这是view里的表单的代码块





这是php代码

class Login extends CI_Controller{
function index(){
$this->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监视一下网络

人气教程排行