Basic PHP
What will be the output of the following PHP code?
$total = "25 students";
$more = 10;
$total = $total + $more;
echo "$total";

25 students
35
35 students
Error

ANSWER DOWNLOAD EXAMIANS APP