Hi, im desperately trying to include the section name within the section description using a variable, iv tried this <actinic:variable name="SectionPageName" /> with no luck. any suggestions?
Much appreciated.
					Much appreciated.
<actinic:block php="true">
	$sectdesc = '<actinic:variable name='SectionDescription' selectable="false" />';
	$sectname = '<actinic:variable name='SectionName' encoding='perl' selectable='false' />';
	echo str_replace('&#91;SectionName&#93;', $sectname, $sectdesc);
</actinic:block>
Comment