PHP Functions
What will be the output of the following PHP code?
$op2 = "blabla";
function foo($op1) {
echo $op1;
echo $op2;
}
foo("hello");

error
helloblabla
helloblablablabla
hello

ANSWER DOWNLOAD EXAMIANS APP