私はで登録しています。登録&ログイン CI3のシステム。
$autoload['libraries'] = array('database', 'form_validation', 'user_agent', 'session');
$autoload['helper'] = array('url', 'form');
はまだ私はこのエラーを取得する:私はautoload.phpにライブラリやヘルパーをロードした
class Signin extends CI_Controller {
public function index()
{
$this->load->view('signin');
}
public function signin()
{
$this->form_validation->set_rules('email', 'Email', 'required');
$this->form_validation->set_rules('password', 'Password', 'required');
if ($this->form_validation->run())
{
echo "You are in";
}
else
{
echo validation_errors();
}
}
}
:
私のコントローラは、CIのユーザーガイドに従って行われています。
Message: Undefined property: Signin::$load
Filename: controllers/Signin.php
なぜですか?ありがとうございました!
コントローラにコンストラクタを追加しましたか? –