Welcome Guest, Not a member yet? Register   Sign In
Session Wont Set on IE7
#2

[eluser]Derek Allard[/eluser]
I have to admit I'm lost. What underscore? The only session I can see you've set has a key of "id".

Can you recreate with this
Code:
<?php

class Test extends Controller {

    function __construct()
    {
        parent::Controller();
        $this->load->library('session');
    }

    function index()
    {
        $this->load->helper('url'); // this is just for the anchor() function
        
        $this->session->set_userdata('some_name', 'some_value');
        
        echo anchor('test/set_it_and_forget_it', 'go read the session');
    }
    
    function set_it_and_forget_it()
    {
        echo "your session is: ";
        echo $this->session->userdata('some_name');    
    }

}
?>


Messages In This Thread
Session Wont Set on IE7 - by El Forum - 05-12-2008, 06:50 PM
Session Wont Set on IE7 - by El Forum - 05-12-2008, 07:58 PM
Session Wont Set on IE7 - by El Forum - 05-12-2008, 11:23 PM
Session Wont Set on IE7 - by El Forum - 05-13-2008, 02:27 AM
Session Wont Set on IE7 - by El Forum - 05-13-2008, 02:37 AM
Session Wont Set on IE7 - by El Forum - 05-13-2008, 04:07 AM
Session Wont Set on IE7 - by El Forum - 05-13-2008, 04:32 AM
Session Wont Set on IE7 - by El Forum - 05-13-2008, 04:43 AM
Session Wont Set on IE7 - by El Forum - 09-15-2008, 12:15 PM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 06:54 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 07:48 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 08:50 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 08:52 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 11:13 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 11:16 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 11:24 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 11:29 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 11:48 AM
Session Wont Set on IE7 - by El Forum - 10-09-2009, 03:13 PM
Session Wont Set on IE7 - by El Forum - 10-27-2010, 01:00 PM
Session Wont Set on IE7 - by El Forum - 10-27-2010, 08:12 PM



Theme © iAndrew 2016 - Forum software by © MyBB