1.

What will be the output of the following PHP code ?
<?php
$n1 = 14;
$n2 = 31;
$n3 = 11;
echo "$n1 = $n1 + $n2 + $n3";
?>

A. 14 = 14 + 31 + 11
B. Error
C. $n1 = $n1 + $n2 + $n3
D. Nothing
E. None of these
Answer» B. Error


Discussion

No Comment Found

Related MCQs