0
Why echo " all statement";
the output will be wrong in real editors should use concatenation
2 Answers
0
The PHP concatenation is a dot(.)
Example :
$a = 5;
$b = 6;
$r = $a + $b;
echo "The sum of ". $a . " and " . $b . " is = " . $r;
0
thanks that's what I am talking about so the syntax shown in the course is wrong