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

ERROR
Welcome to Narnia
greeting
GREETING

ANSWER DOWNLOAD EXAMIANS APP