Shaunak Kashyap wrote:

> Where and how is $_SESSION["root"] being initialized?
> 
> Try outputting it's value right after it is initialized and see if that
> works successfully.
> 
> Then try and output it's value right before the include("top.php")
> statement and see if that works successfully.
> 
> Finally, try and output it inside top.php and see if that works.
> 
> Shaunak Kashyap
>  
> Senior Web Developer
> WPT Enterprises, Inc.
> 5700 Wilshire Blvd., Suite 350
> Los Angeles, CA 90036
>  
> Direct: 323.330.9870
> Main: 323.330.9900
>  
> www.worldpokertour.com
>  
> Confidentiality Notice:  This e-mail transmission (and/or the attachments
> accompanying) it may contain confidential information belonging to the
> sender which is protected.  The information is intended only for the use
> of the intended recipient.  If you are not the intended recipient, you are
> hereby notified that any disclosure, copying, distribution or taking of
> any action in reliance on the contents of this information is prohibited.
> If you have received this transmission in error, please notify the sender
> by reply e-mail and destroy all copies of this transmission.
> 
> 
>> -----Original Message-----
>> From: João Cândido de Souza Neto [mailto:[EMAIL PROTECTED]
>> Sent: Tuesday, March 21, 2006 9:38 AM
>> To: php-general@lists.php.net
>> Subject: [PHP] Re: session vars
>> 
>> João Cândido de Souza Neto wrote:
>> 
>> > Hipeople.
>> >
>> > I've a system where i use session and all is working fine. But has
>> > something that don't work and i can't to find the cause.
>> >
>> > When a use the include function, the file included don't see the
>> > session vars.
>> >
>> > Anyone knows why it's happen?
>> >
>> > Thanks.
>> >
>> 
>> I'll try to explain better my problem.
>> 
>> After start the session and setting all of session variables.
>> 
>> I have a file named top.php that has the follow code in:
>> 
>> <a href="<? echo $_SESSION["root"]; ?>/about.php">
>>         About system
>> </a>
>> 
>> I've too a file named page.php that has the follow code in:
>> 
>> <? session_start(); ?>
>> ... Some codes ...
>> <? include("top.php"); ?>
>> ... some codes ...
>> 
>> By this way, the file top.php ought to see the $_SESSION["root"]
>> variable, but it isn't happening.
>> 
>> Just to remember, my register_global is defined to off.
>> 
>> Thanks for your tips.
>> 
>> --
>> ---------------------------------------------------
>> João Cândido de Souza Neto
>> Web Developer
>> 
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php

I tried it yet, if a put a echo $_SESSION["root"] before or after the
include, it works fine, it doesn't work in the file top.php.

-- 
---------------------------------------------------
João Cândido de Souza Neto
Web Developer

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

Reply via email to