echo html 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("");
Example 3: echo php
<?php
$string = "Hello, World!";
echo $string;
?>