1.

What will be the output of the following PHP code ?
<?php
$p = 51;
function Result()
{
echo "$p";
}
Result();
?>

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


Discussion

No Comment Found

Related MCQs