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