Q. What will be the output of the following php code?
Code:
<?php $num = 1; $num1 = 2; print $num . "+". $num1; ?>
β
Correct Answer: (B)
1+2
<?php $num = 1; $num1 = 2; print $num . "+". $num1; ?>
You must be Logged in to update hint/solution