eot php variable code example
Example: heredoc php
$name = 'name';
$str = <<<EOT
my name is $name
line 2
line 3
" you can put double quote
' you can put simple quote
few lines
EOT; // take it at the beginning of the line
echo $str;