I'm wondering about some "parallel functionality". In a mason file, you can include a variable like this:
Code: Select all
<p><%$var_name%></p>
Code: Select all
<p><?php printf("%s", $var_name) ?></p>
Moderator: General Moderators
Code: Select all
<p><%$var_name%></p>
Code: Select all
<p><?php printf("%s", $var_name) ?></p>
Code: Select all
<p><?php echo $var_name) ?></p>