Lab 1 Exercise 1. Create a Web page that contains a "here document" block. Please make up your own text in the "here document" block.
**************************************************************
CODES:
<?php
$variables = "variables";
$myText = <<<myHereDoc
<pre>
This is some PHP text.
It is completely free.
I can use "double quotes"
and 'single quotes',
plus $variables too, which will
be properly converted to their values.
<b>Even <span style="color: red">HTML tags</span> work!</b>
And I can write myHereDoc, as long as it
is not alone on a line, like this:</pre>
myHereDoc;
echo $myText;
?>
**************************************************************
ANSWER:
This is some PHP text.
It is completely free.
I can use "double quotes"
and 'single quotes',
plus variables too, which will
be properly converted to their values.
Even HTML tags work!
And I can write myHereDoc, as long as it
is not alone on a line, like this: