PHP Functions
What will be the output of the following PHP code ?
function constant()
{
define("GREETING", "Welcome to Narnia");
echo greeting;
}

ERROR
greeting
GREETING
Welcome to Narnia

ANSWER DOWNLOAD EXAMIANS APP