<?php
$num=21;
echo " the number is $num ".' <br> ';
echo ' the number is $num<br> ';
echo ' the number is '.' <br> '.$num;
echo ' the number is $num<br> ';
echo ' the number is '.' <br> '.$num;
?>
output :
output :
the number is 21
the number is $num
the number is
21
the number is $num
the number is
21