I believe it is faster to break out of a PHP and write your HTML instead of using echo() or print(), but to me it makes it less readable. Many developers say that using templates is the best way to go, but I still feel it makes things less organized, because you have to have an html file, and an action that will replace the tags in the template.
Any comments on the best way to do this?
a) Break out of PHP to print HTML
b) Use tons of echo()'s or print()'s
c) Use templates.
Derek C.