Welcome Guest, Not a member yet? Register   Sign In
Session Class - Add, Edit and Remove
#7

[eluser]webdude[/eluser]
thanks for the reply.

below is a cut down version of my page but i am unable to call/show $this->session->userdata('product');
Code:
<?php
    class Product_details  extends Controller {
    
        function productdetails()
        {
            $this->load->library('session');
            echo "session id = ".$this->session->userdata('session_id');
            echo "<br>";
            echo "product = ".$this->session->userdata('product');
            echo "<hr />";
        }
        
        function add()
        {
            $newdata = array('product' => 'test','code' => '001');
            $this->session->set_userdata($newdata);
        }
    
    }
?&gt;


Messages In This Thread
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:21 AM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:39 AM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:53 AM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 05:37 AM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:00 PM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:04 PM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:08 PM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:17 PM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:29 PM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 02:32 PM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 03:04 PM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 03:06 PM
Session Class - Add, Edit and Remove - by El Forum - 08-08-2007, 03:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB