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};

error, constant value cannot be changed
testvalue
testtest
test

ANSWER DOWNLOAD EXAMIANS APP