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

Discussion :: PHP - CS

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

    <?php

    $color = red;

    echo "$color" . red ;

    ?>

  2. A.

     red red

    B.

     red

    C.

     error

    D.

     nothing

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Use of undefined constant red.


Be The First To Comment