Q. What will be the output of the following PHP code ?
Code:
<?php $one = "Hello"; $two = "World"; echo "$one"+"$two"; ?>
β
Correct Answer: (C)
0
<?php $one = "Hello"; $two = "World"; echo "$one"+"$two"; ?>
You must be Logged in to update hint/solution