Welcome Guest, Not a member yet? Register   Sign In
Simple Question Regarding Variables
#6

[eluser]GSV Sleeper Service[/eluser]
Hi Jesse,

if you just want these vars available throughout just one controller then using
Code:
private $admin_email = '[email protected]';
is the way to go, you'd then access this throughout your controller/class using
Code:
$this->admin_email;
if they're not going to change, you could use class constants, eg
Code:
const ADMIN_EMAIL = '[email protected]';
these can be accessed in your class using
Code:
self::ADMIN_EMAIL;


Messages In This Thread
Simple Question Regarding Variables - by El Forum - 01-14-2009, 08:29 AM
Simple Question Regarding Variables - by El Forum - 01-14-2009, 09:16 AM
Simple Question Regarding Variables - by El Forum - 01-14-2009, 09:26 AM
Simple Question Regarding Variables - by El Forum - 01-14-2009, 09:36 AM
Simple Question Regarding Variables - by El Forum - 01-14-2009, 09:40 AM
Simple Question Regarding Variables - by El Forum - 01-14-2009, 11:00 AM
Simple Question Regarding Variables - by El Forum - 01-14-2009, 11:02 AM
Simple Question Regarding Variables - by El Forum - 01-14-2009, 11:07 AM



Theme © iAndrew 2016 - Forum software by © MyBB