PHP Variables


  1. What will be the output of the following PHP code ?
    <?php
    $n;
    echo "$n";
    ?>











  1. 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.