Hi,
when PHP looks for a variable, what is the precedence (order) in which it looks?
for example:
$HTTP_POST_VARS['term'] = 'hello';
$HTTP_COOKIE_VARS['term'] = 'Dolly';
$HTTP_SESSION_VARS['term'] = 'O Hello Dolly';
echo $term;
-- what is the order in which these collections will be searched through, is there a page on this at php.net?
Thanks