in reply to
CGI::Session between two scripts
Andrew
, without seeing your code (
hint hint
), we can only speculate. I would wager from your description though, that your first script still has the session file open, preventing the second script from writing to it.
Comment on
Re: CGI::Session between two scripts
Replies are listed 'Best First'.
Re: Re: CGI::Session between two scripts
by
qadwjoh
(Scribe)
on Feb 09, 2004 at 18:32 UTC
Do I have to close the session if I want another script to be able to update it? How do I do this?
Andrew
[reply]
Re: Re: Re: CGI::Session between two scripts
by
jdtoronto
(Prior)
on Feb 09, 2004 at 18:43 UTC
$session->close;
[reply]
In Section
Seekers of Perl Wisdom