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

Welcome to Narnia
ERROR
greeting
GREETING

ANSWER DOWNLOAD EXAMIANS APP