PDA

View Full Version : How Does Global.php clear all other variables ?


GlobalFusion
04-03-2005, 10:08 AM
When I include Global.php in my NON-VB page, it clears all of my [non-vb] variables..

what part of global.php does this? (so i can try to circumvent it).

GlobalFusion
04-03-2005, 10:09 AM
ahh crap. i posted in the wrong thread.

sabret00the
04-03-2005, 10:49 AM
what type of non-vB variables?

GlobalFusion
04-03-2005, 11:28 AM
I simply include the global.php file and use things like $bbuserinfo['username'] on the page.

Like so:


include('global.php');

echo 'Welcome '.$bbuserinfo['username'].'';




The above.. works fine.. on its own.


But Im using this in a php page with its own variables.

Similiar to this:



include('myconfig.php');
include('global.php');

echo 'Welcome to <a href="'.$site_url.'">'.$site_name.'</a>, '.$bbuserinfo['username'].'.';




And by using that approach.. by including global.php it seems to clear all the values stored in my own variables..


At the end of the day, I only seem to be able to show one set or the other.


HELP!

akanevsky
04-03-2005, 11:49 AM
Try including config.php after global.php.

GlobalFusion
04-03-2005, 12:27 PM
I cant believe I overlooked that... LOL.

It worked (of course)


Thanks.

[:: RESOLVED ::]