1.

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

A. 15
B. 12
C. Error
D. Nothing
E. 27
Answer» F.


Discussion

No Comment Found

Related MCQs