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

Discussion :: PHP - CS

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

    <?php

    $color1 = red;

    $color2 = green;

    echo "$color1"."$color2";

    ?>

  2. A.

     red green

    B.

     red

    C.

     green

    D.

     error

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    It has to be $color1 = “red”; and $color2 = “green”; therefore the error.


Be The First To Comment