doushua7737 2018-10-18 23:35
浏览 105
已采纳

Codeigniter - 使用Userdata进行数据库查询

I want to use Session data as a condition for a query in database, but it only returns NULL. I have tried $this->session->userdata('account'), but it still won't work.

Function - Login/Set Userdata :

    public function login_auth()
  {
        $this->load->helper('security');
        $this->form_validation->set_rules('username', 'Username', 'trim|required|xss_clean');
        $this->form_validation->set_rules('password', 'Password', 'trim|required|xss_clean');
        if ($this->form_validation->run() == FALSE) {
            if(isset($this->session->userdata['logged_in'])){
                $this->dashboard();
            }else{
                $this->index();
            }
        } else {
            $data = array(
            'username' => $this->input->post('username'),
            'password' => $this->input->post('password')
            );
            $result = $this->agent_model->login($data);
            if ($result == TRUE) {
                $username = $this->input->post('username');
                $result = $this->agent_model->read_user_information($username);
                if ($result != false) {
                    $session_data = array(
                    'username' => $result[0]->username,
                    'owner' => $result[0]->owner,
                    'account' => $result[0]->account,
                    'id' => $result[0]->id
                    );
                    $this->session->set_userdata('logged_in', $session_data);
                    $this->dashboard();
                }
            } else {
                $data = array(
                'error_message' => 'Invalid Username or Password'
                );
                $this->load->view('header');
                $this->load->view('pages/login', $data);
                $this->load->view('footer');
            }
        }
  }

Function - Using Userdata->Account as a condition(From Another Function)

$sess_account = $this->session->userdata('account');
    var_dump($this->session->userdata('account'));
    $coords = $this->map_model->get_coordinates($sess_account);

Am i missing something here? Any help is truly appreciated. Thank you!

  • 写回答

1条回答 默认 最新

  • dt102282 2018-10-19 01:06
    关注

    If you are certain that the session item 'logged_in' should have been set and $this->session->userdata['logged_in'] is returning null it is likely you do not have session configured correctly.

    It's almost always improper $config value for session and or cookie items.

    Here is a git repo that should help you test your setup.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog