PHP Operators and Expressions
What will be the output of the following PHP code ?
$x = "test";
$y = "this";
$z = "also";
$x .= $y .= $z ;
echo $x;
echo $y;

error at line 4
testthis
testthisalsothisalso
testthisthisalso

ANSWER DOWNLOAD EXAMIANS APP