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