Leijonamieli
Programmer
<?php
$text= "hmm";
function foo() {
var_dump($text);
}
foo();
?>
How do I access $text? This only prints NULL.
$text= "hmm";
function foo() {
var_dump($text);
}
foo();
?>
How do I access $text? This only prints NULL.