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

Discussion :: PHP - CS

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

    <?php

    print "echo hello world";

    ?>

  2. A.

     echo hello world

    B.

     hello world

    C.

     nothing

    D.

     error

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The print statement will print what ever is present inside the double-quotes.


Be The First To Comment