Hi,

Sunday, August 24, 2003, 3:45:33 AM, you wrote:
MN> Hi List,

MN> is there a way (mybe in php5?) to define/declare a global var as a 
MN> superglobal, so that I can use this var like the known superglobals
MN> ($_GET, $_SESSION, etc.) ???

MN> If not, is there a list for "feature requests"?


MN> Regards,
MN> Matthias

You can always add to one of the superglobals, remembering not to have
a name clash with get or post variables.

$_GET['test'] = 'Hi";

now that will be available in all functions.

-- 
regards,
Tom


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to