A
Q. What will be the output of the following PHP code?
Code:
<?php
$total = "25 students";
$more = 10;
$total = $total + $more;
echo "$total";
?>
$total = "25 students";
$more = 10;
$total = $total + $more;
echo "$total";
?>
- Correct Answer - Option(C)
- Views: 5
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.