OK, thanks.
How about the difference between this:
print "<form>";
print "<textarea></textarea>";
print "</form>";
and this?
?>
<form>
<textarea></textarea>
</form>
<?PHP
In other words, switching between PHP and HTML vs. having PHP print() html. I know there is lots of ancedotal evidence that ASP has a perfomance hit when doing this. Does PHP?