Welcome Guest, Not a member yet? Register   Sign In
Pass variable trough functions
#2

[eluser]InsiteFX[/eluser]
Code:
class some extends CI_Class {

    public $variabletopass = '';

    function index()
    {
        $variable = 'hello world'; //some X variable
        $this->variabletopass = $variable; //the variable that i need to pass through.
    }

    function misc()
    {
        $some = $this->$variabletopass; //this is what im trying but i dont get nothing
        var_dump($some);
    }
}


Messages In This Thread
Pass variable trough functions - by El Forum - 02-07-2012, 12:40 AM
Pass variable trough functions - by El Forum - 02-07-2012, 01:02 AM
Pass variable trough functions - by El Forum - 02-07-2012, 11:47 AM



Theme © iAndrew 2016 - Forum software by © MyBB