私はCodeigniterの初心者で、チュートリアルのcodeigniterログインからログインページを作成しようとしています。ユーザー名とパスワードを入力してログインしようとすると、次のエラーが発生します。
PHPエラーが発生しました
重大度:通知
メッセージ:未定義のプロパティ:Verifylogin :: $ form_validation
ファイル名:controllers / verifylogin.php
行番号:18
編集:
私のverifylogin.php
ファイルは
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
class Verifylogin extends CI_Controller
{
function __construct() {
parent::__construct();
}
function index()
{
$this->load->helper(array('form', 'url'));
$this->load->model('user');
$this->load->library('form_validation');
//$this->load->library('form_validation', 'form_validation', true/false);
$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)
{
redirect('login','refresh');
}
else
{
redirect('home','refresh');
}
}
function check_database($password)
{
$username = $this->input->post('username');
$this->load->model('user');
$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');
}
}
}
?>
また、このform_validation.php
ファイルが配置されている場所。