Re: [PHP] mediator between PHP and Perl (with sessions)

2005-02-15 Thread Matt M.
Is there a way to use sessions variables in PHP shell script (without reading the session file and parse it in the script)? Do you have a database available? You could put the session info in a database. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] mediator between PHP and Perl (with sessions)

2005-02-15 Thread YaronKh
Hi What you can do is change the php.ini file In the [session] section like this: session.use_cookies = 0 session.use_only_cookies = 0 session.auto_start = 0 and now make sure that all script are running under the same session id at the beginning of each php script you should add the