Quote:
Originally Posted by Zachery
Don't use single quotes inside of template conditional varibles.
use $show[foo] instead of $show['foo']
|
That is silly and somewhat incorrect:
If foo is a constant, you will run into some problems that will probably take hours to solve. Remember that conditions are parsed like so (NOT in double quotes!):
Code:
blah blah <if condition="$condition">Do this<else />Or Do This</if>blah blah
Code:
blah blah " . ($condition ? "Do This" : "Or Do This") . "blah blah
Example:
PHP Code:
<?php
define('a', 'b');
$show['b'] = false;
$show['a'] = true;
echo ($show[a]) ? 'Working as expected' : 'Uh Oh!';
// outputs 'Uh Oh!'
?>