Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$on$e = 1;
$tw$o = 2;
$thre$e = 3;
$fou$r = 4;
echo "$on$e / $tw$o + $thre$e / $fou$r";
?>
Answer : Option D
Explanation :
You can not use the $ in between the variable name.
Be The First To Comment