<?php
//Nowdoc variable
$var=<<<'EOD'
We
Welcome
You
On
Our
Softhunt
Website
EOD;
echo $var;
?>
<?php
$var1="We". PHP_EOL;
$var2="Welcome". PHP_EOL;
$var3="You". PHP_EOL;
$var4="On". PHP_EOL;
$var5="Our". PHP_EOL;
$var6="Softhunt". PHP_EOL;
$var7="Website";
$var1.=$var2.=$var3.=$var4.=$var5.=$var6.=$var7;//concatenating the string into $var1
echo $var1 //printing concatenated string
?>
<?php
//declaring multiple lines using the new line escape sequence
$var="We
Welcome
You
On
Our
Softhunt
Website";
echo $var;
?>