1.

What will be the output of the following PHP code ?
<?php
$p = 12;
echo ++$p;
echo $p++;
echo $p;
echo ++$p;
?>

A. Error
B. 12
C. Nothing
D. 13131415
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs