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