PHP Operators and Expressions
What will be the output of the following PHP code ?
define("VAR_NAME","test");
${VAR_NAME} = "value";
echo VAR_NAME;
echo ${VAR_NAME};

testtest
test
error, constant value cannot be changed
testvalue

ANSWER DOWNLOAD EXAMIANS APP