Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
echo "echo "Hello World"";
?>
Answer : Option D
Explanation :
It would have printed echo “Hello world” if the statement was echo “echo ”Hello World””;.
Be The First To Comment