Is it possible to do a block level echo when using php in templates?
<? if ($total_results>1) {
echo "<h4 class='interest_title'>Related Interests</h4>";
echo "<ul class='interest_tags'>";
echo "{exp:simpletag:related_tags tagname='{segment_3}' orderby='weight' sort='desc' weblog='profiles'}";
echo "<li><a href="http://{path=community/search/}{segment_3}+{tagname}">{tag} ({weight})</a></li>";
echo "{/exp:simpletag:related_tags}";
echo "</ul>";
}?>would like to clean this sort of thing up a bit…