Welcome Guest, Not a member yet? Register   Sign In
Why I can't retrieve data from session in CodeIgniter3?
#2

(This post was last modified: 06-11-2015, 02:33 AM by InsiteFX.)

For one, your session table doe's not match the CI session table!

PHP Code:
NySQL:
CREATE TABLE IF NOT EXISTS `ci_sessions` (
 
       `idvarchar(40NOT NULL,
 
       `ip_addressvarchar(45NOT NULL,
 
       `timestampint(10unsigned DEFAULT 0 NOT NULL,
 
       `datablob NOT NULL,
 
       PRIMARY KEY (id),
 
       KEY `ci_sessions_timestamp` (`timestamp`)
); 
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: Why I can't retrieve data from session in CodeIgniter3? - by InsiteFX - 06-11-2015, 02:32 AM



Theme © iAndrew 2016 - Forum software by © MyBB