Home > Backend Development > PHP Tutorial > CI框架,表达提交没有反应,这是为什么呢

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

WBOY
Release: 2016-06-23 14:03:41
Original
1010 people have browsed it

这是view里的表单的代码块

<form class="login active" action="http://localhost/~chrisfu/CI/index.php/login/checklogin" method="post">						<h3>Login</h3>						<div>							<label>Username:</label>							<input type="text" name="name"/>							<span class="error">This is an error</span>						</div>						<div>							<label>Password: <a href="forgot_password.php" rel="forgot_password" class="forgot linkform">Forgot your password?</a></label>							<input type="password" name="psword"/>							<span class="error">This is an error</span>						</div>						<div class="bottom" >							<div class="remember"><input type="checkbox" /><span>Keep me logged in</span></div>							<input type="submit" value="Login" name="submit"></input>							<a href="register.php" rel="register" class="linkform">You don't have an account yet? Register here</a>							<div class="clear"></div>						</div>					</form>
Copy after login



这是php代码
<?phpclass 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 "<br>";				echo $this->session->userdata('uid');			}else{					echo "password wrong";			}		}else{			echo "user not exist";		}	}}	?>
Copy after login


回复讨论(解决方案)

换下提交按钮的名字试下,用firebug监视一下网络

换下提交按钮的名字试下,用firebug监视一下网络

ok了,因为js文件把submit功能给block掉了

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template