Welcome Guest, Not a member yet? Register   Sign In
global variable in controllers
#2

[eluser]Learn CodeIgniter[/eluser]
Code:
class Main extends CI_Controller {

  public $v;

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

    $this->v = "23";
  }

  function index()
  {
    echo $this->v; // doesnt work, undefined var
  }
}


Messages In This Thread
global variable in controllers - by El Forum - 06-04-2012, 01:39 PM
global variable in controllers - by El Forum - 06-04-2012, 02:25 PM



Theme © iAndrew 2016 - Forum software by © MyBB