Here is an example:
$variable = "some text";
function myfunc() {
print $variable; // Does not work
}
$variable = "some text";
function myfunc() {
print $variable; // Does not work
}
|
|
|
$variable = "some text";
function myfunc() {
global $variable;
print $variable; // Does not work
}
Guest_bernkly_*