PHP Functions
What will be the output of the following PHP code?
function foo($msg) {
echo "$msg";
}
$var1 = "foo";
$var1("will this work");

Will this work
0
Error
$msg

ANSWER DOWNLOAD EXAMIANS APP