PHP Variables
-  What will be the output of the following PHP code ?
<?php
$n;
echo "$n";
?> 
- 
                        
View Hint View Answer Discuss in Forum
NA
Correct Option: E
Since the variable n is not initialised it is not storing any value, therefore nothing will be printed on the screen.