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

GREETING
ERROR
Welcome to Narnia
greeting

ANSWER DOWNLOAD EXAMIANS APP