$n = 10; // global variable
function f()
{
//$n = 30; // local variable
echo $n . "<br />"; // error not local nor global
}
f();
echo $n . "<br />"; // global variable
/*
run:
Notice: Undefined variable: n in C:\xampp\htdocs\he.seek4info.com\test.php on line 13
10
*/