Codeigniter 3 - Access Session from Outside Codeigniter Installation

后端 未结 3 1361
半阙折子戏
半阙折子戏 2020-12-09 23:22

I can\'t seem to get session data passed from my codeigniter application back to a script in my includes folder. From what I\'ve read on other answers, I need to set my

3条回答
  •  失恋的感觉
    2020-12-09 23:45

    I found this access codeigniter session values from external files it may help what you after.

    load->library('session'); //if it's not autoloaded in your CI setup
        echo $CI->session->userdata('name');
    ?>
    

提交回复
热议问题