"/>
Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will be the output of the following PHP code ?

    <?php

    $hello = "Hello World";

    $bye = "Bye";

    echo $hello;"$bye";

    ?>

  2. A.

     Hello World

    B.

     Bye

    C.

     Hello worldBye

    D.

     Error

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Since there is a semi-colon in between $hello and $bye, the line ends at $hello. However $bye would have printed if a echo was present before “$bye”.


Be The First To Comment