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
$enter_string = 'EXAMPLE'; echo('Echo as HTML' . htmlspecialchars((string)$enter_string));