I want to conditionally output HTML to generate a page, so what\'s the easiest way to echo multiline snippets of HTML in PHP 4+? Would I need to use a template framework lik
Don't echo out HTML.
If you want to use
$title; "; ?>
you should be doing this:
= $title;?>