how to echo and html file in php code example
Example: php echo alot of html
echo <<<CODE
<table>
<tr>
<td><b>Hello World</b></td>
</tr>
</table>
CODE;
echo <<<CODE
<table>
<tr>
<td><b>Hello World</b></td>
</tr>
</table>
CODE;