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 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同