0
votes
What is the best way to insert HTML via PHP ?
Do NOT use smarty - PHP is a templating system in itself. Consider using this syntax:
<?php if($a):?>
[SOME MARKUP]
<?php else: ?>
[SOME OTHER MARKUP]
<? endif; ?> …
