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

10
Error
No Output
None of the Mentioned

ANSWER DOWNLOAD EXAMIANS APP