Q. What will be the output of the following PHP code?
Code:
<?php
$a = 5;
$b = 10;
print ("$a, $b+10");
?>
β
Correct Answer: (A)
5, 10+10
<?php
$a = 5;
$b = 10;
print ("$a, $b+10");
?>
You must be Logged in to update hint/solution