【发布时间】:2016-03-25 21:33:00
【问题描述】:
我一直在关注这个使用 CodeIgniter 进行简单登录的教程
http://www.iluv2code.com/login-with-codeigniter-php.html。
每当我点击登录按钮时,我都会被重定向到一个空白页面,而不是进入“verifylogin”控制器。我试图将 form_open('verifylogin') 更改为 form action="verifylogin" 只是为了确保它到达验证登录。它达到了验证登录,但似乎无法执行正确的功能。为什么呢?为什么我在提交表单时被重定向到空白页面? 谢谢!
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Login extends CI_Controller {
function __construct() {
parent::__construct();
}
function index() {
$this->load->helper(array('form'));
$this->load->view('login_view');
}
}
?>
查看
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Simple Login with CodeIgniter</title>
</head>
<body>
<h1>Simple Login with CodeIgniter</h1>
<?php echo validation_errors(); ?>
<?php echo form_open('verifylogin'); ?>
<label for="username">Username:</label>
<input type="text" size="20" id="username" name="username"/>
<br/>
<label for="password">Password:</label>
<input type="password" size="20" id="passowrd" name="password"/>
<br/>
<input type="submit" value="Login"/>
</form>
</body>
</html>
控制器
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class VerifyLogin extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->model('user','',TRUE);
}
function index() {
//This method will have the credentials validation
$this->load->library('form_validation');
$this->form_validation->set_rules('username', 'Username', 'trim|required|xss_clean');
$this->form_validation->set_rules('password', 'Password', 'trim|required|xss_clean|callback_check_database');
if($this->form_validation->run() == FALSE) {
//Field validation failed. User redirected to login page
$this->load->view('login_view');
} else {
//Go to private area
redirect('home', 'refresh');
}
}
function check_database($password) {
//Field validation succeeded. Validate against database
$username = $this->input->post('username');
//query the database
$result = $this->user->login($username, $password);
if($result) {
$sess_array = array();
foreach($result as $row) {
$sess_array = array(
'id' => $row->id,
'username' => $row->username
);
$this->session->set_userdata('logged_in', $sess_array);
}
return TRUE;
} else {
$this->form_validation->set_message('check_database', 'Invalid username or password');
return false;
}
}
}
?>
【问题讨论】:
-
添加
error_reporting(E_ALL)。我认为你有一些错误。 -
对不起,我在哪里添加它?
-
您使用的 codeigniter 版本可能与教程不同,因为 codeigniter 3 有很多变化。
-
您还需要加载安全助手以使用codeigniter.com/user_guide/helpers/security_helper.html表单中的xss_clean
-
在视图上的操作确保匹配控制器名称
form_open(verifylogin')和class Verifylogin extends CI_Controller {}文件名Verifylogin.php
标签: php codeigniter