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

greeting
Welcome to Narnia
ERROR
GREETING

ANSWER DOWNLOAD EXAMIANS APP