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

Discussion :: PHP - CS

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

    <?php

    $one = "one";

    $two = "two";

    print("$one$two");

    ?>

  2. A.

     onetwo

    B.

     $one$two

    C.

     one

    D.

     error

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    This is same as the echo statement.


Be The First To Comment