Posted by windandwaves on 01/07/06 23:33
Hi Folk
Consider this:
---foo1.php
$myvar = 10;
--- foo2.php
require_once("foo1.php");
function funky {
echo $myvar;
}
from my experience, funky does not print 10. How do I make $myvar "global"
(not sure if this is the right word) so that it shows everywhere.
Navigation:
[Reply to this message]
|