1.

What will be the output of the following PHP code?
<?php
function calculate($p, $t="")
{
$total = $p + ($p * $t);
echo "$total";
}
calculate(65);
?>

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


Discussion

No Comment Found

Related MCQs