Q. What will be the output of the following PHP code?
Code:<?php $total = "25 students"; $more = 10; $total = $total + $more; echo "$total"; ?>
β
Correct Answer: (C)
35
<?php $total = "25 students"; $more = 10; $total = $total + $more; echo "$total"; ?>
You must be Logged in to update hint/solution