the following code can't be worked. Though the function was calling
$name1 = "apple";
$gender1 = "orange";
$country1 = "pepe";
function profile1($name1, $gender1, $country1)
{
    echo $name1 . "\n";
    echo $gender1 . "\n";
    echo $country1 . "\n";
}
profile1();
 
    