"/>
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

    C.

     nothing

    D.

     error

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    The above syntax will produce an error, unlike the echo statement.


Be The First To Comment