CodeIgniter Forums
Session hook - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11)
+--- Thread: Session hook (/showthread.php?tid=69711)



Session hook - Wertos - 01-09-2018

Good evening. Sorry for my English !
Prompt, whether it is possible what to write in a field "date" in the table "sessions" the useragent ? I wanted to write a widget "Who is online"
CI version - 3.1-stable git.


RE: Session hook - InsiteFX - 01-10-2018

It's already been down, search google and the forums.


RE: Session hook - Wertos - 01-10-2018

PHP Code:
$data = [  
    
'useragent' => $this->agent->agent_string()  
];  
  
$this
->session->set_userdata('user'$data);   
With this I figured out. But still took a class of sessions from CI2
Probably decided.