how to print html php code example
Example 1: php echo alot of html
echo <<<CODE
<table>
<tr>
<td><b>Hello World</b></td>
</tr>
</table>
CODE;
Example 2: print in php
print_r("");
echo <<<CODE
<table>
<tr>
<td><b>Hello World</b></td>
</tr>
</table>
CODE;
print_r("");