Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
one = 1;
two = 2;
three = 3;
four = 4;
echo "one / two + three / four";
?>
Answer : Option D
Explanation :
Variables should start with a $ symbol, since one, two, three, four don’t begin with $ symbol we’ll get an error.
Be The First To Comment