Cant get it to work with "equal to" and "greater than".
GHengeveld |
|
---|---|
You can access pretty much every PHP variable by using {PHP.variablename}, as long as they are defined at the time of parsing (meaning you cant use variables assigned in footer.php somewhere in your main template) and they are not out of scope (i.e. defined in a function or class).
You can access array values by using {PHP.arrayname.key}, for example {PHP.usr.id} (currently logged in user ID, or 0 for guests). Multidimensional arrays are supported too. This is why the list of possible tags is virtually endless. |