PHP Functions
What will be the output of the following PHP code ?
$var = 10;
function one()
{
echo $var;
}
one();

None of the Mentioned
No Output
Error
10

ANSWER DOWNLOAD EXAMIANS APP