Я новичок в Codeigniter. Я следую https://www.webslesson.info/2018/10/user-registration-and-login-system-in-codeigniter-3.html в качестве учебного пособия для моего проекта, чтобы сделать страницу регистрации и входа в систему с использованием codeiginiter
.
Все в порядке, но сеанс не работает в соответствии с моими потребностями.
Что я хочу: -
пользователь, не вошедший в систему, также видит личную область, которая видна только зарегистрированному пользователю.
Вот мой код:
логин. php контроллер
defined('BASEPATH') or exit('No direct script access allowed');
class Login extends CI_Controller
{
public function __construct()
{
parent::__construct();
if ($this->session->userdata('hospital_email')) {
redirect('private_area');
}
$this->load->library('form_validation');
$this->load->library('encryption');
$this->load->model('login_model');
}
function index()
{
$this->load->view('view/login');
}
function validation()
{
$this->form_validation->set_rules('hospital_email', 'Email Address', 'required|trim|valid_email');
$this->form_validation->set_rules('pass', 'Password', 'required');
if ($this->form_validation->run()) {
$result = $this->login_model->can_login($this->input->post('hospital_email'), $this->input->post('pass'));
if ($result == '') {
redirect('private_area');
} else {
$this->session->set_flashdata('message', $result);
redirect('view/login');
}
} else {
$this->index();
}
}
}
login_model. php файл модели
class Login_model extends CI_Model
{
function can_login($email, $password)
{
$this->db->where('hospital_email', $email);
$query = $this->db->get('hospital');
if ($query->num_rows() > 0) {
foreach ($query->result() as $row) {
if ($row->is_email_verified == 'yes') {
$store_password = $this->encryption->decrypt($row->pass);
if ($password == $store_password) {
$this->session->set_userdata('hospital_email', $row->hospital_email);
} else {
return 'Wrong Password';
}
} else {
return 'First verified your email address';
}
}
} else {
return 'Wrong Email Address';
}
}
}
private_area. php controller
defined('BASEPATH') or exit('No direct script access allowed');
class Private_area extends CI_Controller
{
public function __construct()
{
parent::__construct();
if (!$this->session->userdata('hospital_email')) {
redirect('view/login');
}
}
function index()
{
redirect('view/private_area');
}
function logout()
{
$data = $this->session->all_userdata();
foreach ($data as $row => $rows_value) {
$this->session->unset_userdata($row);
}
redirect('login');
}
}
private_area. php просмотр файла
echo '<br /><br /><br /><h1 align="center">Welcome User</h1>';
echo '<p align="center"><a href="' . base_url() . 'private_area/logout">Logout</a></p>';