Good point -- are the included files functions, or other stuff??

function myfunc()
    {
    return $_SESSION['something'];
    }

will not work, but:


function myfunc()
    {
    global $_SESSION;
    return $_SESSION['something'];
    }

will...

J



on 05/12/02 1:14 AM, Ryan Gibson ([EMAIL PROTECTED]) wrote:

> May be a silly question but are u using a global statement in the include
> files, just a thought
> 
> 
> on 4/12/02 1:11 pm, Andy Kirk at [EMAIL PROTECTED] wrote:
> 
>> Can anyone tell me if session variables should be available to scripts that
>> are included into the main script?
>> 
>> It appears to me that they are not unless I am really missing the point.
>> 
>> 
>> 
> 

Justin French
--------------------
http://Indent.com.au
Web Development & 
Graphic Design
--------------------


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

Reply via email to