1.

What will be the output of the following PHP code ? <?php switch($b) { case 2: print "hello"; break; case 1: print "hi"; break; } ?>

A. Hello
B. Hi
C. No output
D. Error
Answer» D. Error


Discussion

No Comment Found