Welcome Guest, Not a member yet? Register   Sign In
...undefined property
#12

[eluser]InsiteFX[/eluser]
Just for a test change your function login() below to function index() and see if it works!
Code:
class Account extends CI_Controller {

    function __construct()
    {
        parent::__construct();
        
    }

    function index() {

        $this->load->model('account_model');

        $query = $this->account_model->login();

        //$accountId = $this->account_model->account_info('id');
        
        if($query) {

            $session_data = array(

                'email'=>$this->input->post('email'),

                'accountId'=>$accountId->id,

                'is_logged_in'=>true

            );

            $this->session->set_userdata($session_data);

            //redirect('character');
            echo "oh yea!";

        } else {

            $data['error'] = "Bad login information supplied. <br />";

            $this->load->view('home',$data);

        }
        
        
    }
}

InsiteFX


Messages In This Thread
...undefined property - by El Forum - 03-29-2011, 02:15 PM
...undefined property - by El Forum - 03-29-2011, 02:23 PM
...undefined property - by El Forum - 03-29-2011, 02:26 PM
...undefined property - by El Forum - 03-29-2011, 02:33 PM
...undefined property - by El Forum - 03-29-2011, 02:54 PM
...undefined property - by El Forum - 03-29-2011, 03:09 PM
...undefined property - by El Forum - 03-29-2011, 03:29 PM
...undefined property - by El Forum - 03-29-2011, 04:33 PM
...undefined property - by El Forum - 03-29-2011, 04:35 PM
...undefined property - by El Forum - 03-29-2011, 08:00 PM
...undefined property - by El Forum - 03-29-2011, 10:16 PM
...undefined property - by El Forum - 03-30-2011, 07:11 AM
...undefined property - by El Forum - 03-30-2011, 07:42 AM
...undefined property - by El Forum - 03-30-2011, 08:02 AM
...undefined property - by El Forum - 03-30-2011, 08:09 AM
...undefined property - by El Forum - 03-30-2011, 08:20 AM
...undefined property - by El Forum - 03-30-2011, 08:23 AM
...undefined property - by El Forum - 03-30-2011, 08:29 AM
...undefined property - by El Forum - 03-30-2011, 09:47 AM
...undefined property - by El Forum - 03-30-2011, 10:17 AM
...undefined property - by El Forum - 03-30-2011, 10:19 AM
...undefined property - by El Forum - 03-30-2011, 10:20 AM
...undefined property - by El Forum - 03-30-2011, 10:31 AM
...undefined property - by El Forum - 03-30-2011, 10:41 AM
...undefined property - by El Forum - 03-30-2011, 10:53 AM
...undefined property - by El Forum - 03-30-2011, 10:58 AM
...undefined property - by El Forum - 03-30-2011, 11:14 AM
...undefined property - by El Forum - 03-30-2011, 11:24 AM
...undefined property - by El Forum - 03-30-2011, 11:35 AM
...undefined property - by El Forum - 03-30-2011, 12:53 PM



Theme © iAndrew 2016 - Forum software by © MyBB