I have this define staement per say:
define('TEXT_MAIN', 'testing this $var1 thing');
how do I get $var1 to actually work instead of just showing text?
I have tried escaping to php etc... but it just prints text...
if i do an:
echo $var1;
anywhere outside this define it works...
define('TEXT_MAIN', 'testing this $var1 thing');
how do I get $var1 to actually work instead of just showing text?
I have tried escaping to php etc... but it just prints text...
if i do an:
echo $var1;
anywhere outside this define it works...