I want to take output these three strings, I use this code
function sectionString()
{
$section_a = 'Khan live in india<br/>';
$section_b = 'Khan live in Australia<br/>';
$section_c = 'Khan live in Pakistan';
return $section_a
return $section_b
return $section_c
turn $section_c
}
echo sectionString();
Here it output like this Khan live in india but I want to take output like this
Khan live in india
Khan live in Australia
Khan live in Pakistan
what i should shange in this code?
You should concatenate this strings into one: