"> What will be the output of the following PHP code ?<?php$First

Home » PHP » PHP Echo/Print » Question
  1. What will be the output of the following PHP code ?
    <?php
    $First = "Hello ";
    $Second = "Interview Mania";
    echo $First, $Second;
    ?>
    1. Hello Interview Mania
    2. Error
    3. Interview Mania
    4. Nothing
    5. None of these
Correct Option: A

Echo can print two variables which are separated by a comma.



Your comments will be displayed only after manual approval.