Hello friends!
I want to access a global instance of  a class from diferents php files. How
can I do this? Is it possible?

The code file (xxxx.php) that has this first reference is:

    $global_var = new one_class();


If I include this file (xxxx.php) in another php file, a new instance is
created again, and I want a unique instance in all project.


If I put in a file (yyyy.php) the expression

    global $global_var;

but without include file (xxxx.php), this global var is undefined.


Which is the solution?



Thanks, in advance.



Silvia Mahiques



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to