Welcome Guest, Not a member yet? Register   Sign In
Assign data variable in the constructor?
#2

[eluser]codedrunk[/eluser]
if you insist on having that value in the constructor then maybe try this:

Code:
class Tasks extends Controller {

   var data;

    function Tasks()
    {
        $this->data['title'] = 'Circus';
    }

    function index()
    {
        $this->data['other_var'] = 15;
        $this->load->view('view.php', $this->data);
    }

{


Messages In This Thread
Assign data variable in the constructor? - by El Forum - 05-17-2008, 08:08 AM
Assign data variable in the constructor? - by El Forum - 05-17-2008, 08:40 AM
Assign data variable in the constructor? - by El Forum - 05-17-2008, 09:00 AM
Assign data variable in the constructor? - by El Forum - 05-17-2008, 09:04 AM
Assign data variable in the constructor? - by El Forum - 05-17-2008, 10:35 AM
Assign data variable in the constructor? - by El Forum - 05-17-2008, 12:32 PM



Theme © iAndrew 2016 - Forum software by © MyBB