1.

What will be the output of the following PHP code ? <?php $i = ""; while($i) { print "hi"; } print "hello"; ?>

A. Hello
B. Infinite loop
C. Hihello
D. Error
Answer» B. Infinite loop


Discussion

No Comment Found