Is jumping out of the php mode a recommended solution for outputting large amounts of HTML?
Example:
[...]
<pre>
} else {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<head>
<title>RPNews(TM)</title>
</head>
<body>
<form name="login" action="login.php" method="post">
<p>Username:<input type="text" name="name"></p>
<p>Password:<input type="password" name="pass"></p>
<p><input type="submit" name="submit" value="Login"></p>
</form>
</body>
<?php
}
?>
</pre>