Q. What will be the output of the following PHP code ?
Code:
<?php $num = 20; $num = $num++ + 25; echo $num; ?>
β
Correct Answer: (D)
45
<?php $num = 20; $num = $num++ + 25; echo $num; ?>
You must be Logged in to update hint/solution