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