HTML that looks this, with multiple php sections:
Code: Select all
<tag> blah </tag>
<?php some_php_function() ?>
<tag> blah </tag>
<tag> blah </tag>
<?php some_other_php_function() ?>
<tag> blah </tag>
Code: Select all
<tag> blah </tag>
<?php some_php_function()
echo " <tag> blah </tag>\n";
echo " <tag> blah </tag>\n";
some_other_php_function() ?>
<tag> blah </tag>