You have already completed these exercises!
Do you want to take them again?
You completed the PHP Concatenate Strings Exercises from W3Schools.com
Share on:
What will be the result of $z in the following code example:$x = 5;$y = 10;$z = "$x . $y";
$z
$x = 5;$y = 10;$z = "$x . $y";
5 . 10
15
5.10