1.

What will be the output of the following PHP code ?
<?php
$p = 20; $q = 20;
if ($p = 12)
$q--;
echo $p;
echo $q--;
?>

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


Discussion

No Comment Found

Related MCQs