Jakeman
06-05-2004, 08:46 PM
I have a problem. Take this code for example:
<?php
function glug() {
global $a;
//code here
}
function blah() {
$a = 1;
glug();
}
blah();
?>
$a is not making it into glug() and I don't know why. It's value is nothing within the glug() function.
<?php
function glug() {
global $a;
//code here
}
function blah() {
$a = 1;
glug();
}
blah();
?>
$a is not making it into glug() and I don't know why. It's value is nothing within the glug() function.