This question has always been lingering in the back of my mind.
Is it better to break out of php to write the HTML portion of code or just echo/print the html? For example:
<?php
require("Something");
?>
<form name="something" action="something" method="something">
<input type="text" name="something">
</form>
<?php
require("something");
?>
OR would this be better:
<?php
require("Something");
echo "<form name=\"something\" action=\"something\" method=\"something\">\n";
echo "<input type=\"text\" name=\"something\">\n";
echo "</form>\n";
require("something");
Just out of curiosity.
Thanks!
chadT
?>