1.

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

A. 15 + 11
B. 15
C. $n1 + $n2
D. 11
E. None of these
Answer» B. 15


Discussion

No Comment Found

Related MCQs