[PHP] Re: access a static variable of a class

2003-06-09 Thread Esteban Fernández
Do you try with the "global" sentence ? . . . global $conf; $var = 'foo'; echo $var::$conf ; ?> EF. On Mon, 09 Jun 2003 18:34:33 -0200 [EMAIL PROTECTED] (Aberindei) wrote: > Hello, > > One line to say this is my first post here, I thought about posting in > php-general,

[PHP] Re: Migration from register_globals=on to register_globals=off

2003-06-04 Thread Esteban Fernández
When you recivied that error ?, in a form ?, if is in a Form just put in the top of .php files this code $HTTP_GET_VARS["variable2"]; $HTTP_GET_VARS["variable3"]; Of course if you send with other method (post) change the GET for POST $HTTP_POS_VARS["variable2"]; $HTTP_POS_VARS["variable3"]; Reg