How to use session table in code igniter
问题 I'm new on code igniter and wanna ask how to use session with session table in database. I have create session table with this sctructure. CREATE TABLE `sys_sessions` ( `session_id` VARCHAR(40) NOT NULL DEFAULT '0' COLLATE 'utf8_unicode_ci', `ip_address` VARCHAR(16) NOT NULL DEFAULT '0' COLLATE 'utf8_unicode_ci', `user_agent` VARCHAR(50) NOT NULL COLLATE 'utf8_unicode_ci', `last_activity` INT(10) UNSIGNED NOT NULL DEFAULT '0', `user_data` TEXT NOT NULL COLLATE 'utf8_unicode_ci', PRIMARY KEY (