-
What will be the output of the following PHP code ?
<?php
echo "echo "Hello Interview Mania"";
?>
-
- Error
- Hello Interview Mania
- echo "Hello Interview Mania"
- echo Hello Interview Mania
- None of these
Correct Option: A
It would have printed echo “Hello world” if the statement was echo “echo \”Hello Interview Mania\””;.