Question:What will be the output?
<?php $value=1 do{ $count=3; $value=$value+2; $value=$count*$value; } while ($count >=12); echo “value=$value”; ?>
A Line 6 will show an error
B Line 8 will show an error
C The output is 12
D The output is 9
+ AnswerD
+ Report