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

Discussion :: PHP - CS

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

    <?php

    $color = red;

    echo "$color";

    ?>

  2. A.

     red

    B.

     $color

    C.

     red

    D.

     Error

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    To print red remove the .


Be The First To Comment