Hi,
I'm working in a custom PHP dialect that uses <php>, </php>, <htm> and </htm> to drop in and out of php from within html. I.e.:
Is this possible with UE? All I want is that PHP code starts either with <php> or with </htm> and that HTML either starts with </php> or with <htm>.
Andreas Pardeike
I'm working in a custom PHP dialect that uses <php>, </php>, <htm> and </htm> to drop in and out of php from within html. I.e.:
Code: Select all
<html>
<php>
$foo=1;
<htm>
<b>some html</b>
<php>$test=3;</php>
</htm>
$bar=2;
</php>
<i>more html</i>
</html>
Andreas Pardeike