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
testvalue
error, constant value cannot be changed

ANSWER DOWNLOAD EXAMIANS APP