Answers for "eot html php"

PHP
0

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;
Posted by: Guest on June-23-2020

Browse Popular Code Answers by Language