Welcome Guest, Not a member yet? Register   Sign In
Can't send data from controller to view - variable scope problem?
#8

[eluser]InsiteFX[/eluser]
Try this and see if it echo's out.
Code:
<?php
class Home extends CI_Controller {
    public function index() {
        $data['username'] = 'ME!';
        $this->load->view('templates/logged', $data);
    }
}

Code:
<?php echo $username; ?>

Also did you save the file with a .php extension?


Messages In This Thread
Can't send data from controller to view - variable scope problem? - by El Forum - 08-30-2013, 09:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB