Re: [PHP] Session var read by form C++ CGI prog ?

2003-09-02 Thread John Bryan
On Tuesday, September 02, 2003, at 05:12PM, Chris Shiflett <[EMAIL PROTECTED]> wrote: >--- John Bryan <[EMAIL PROTECTED]> wrote: >> So looks like I can't have it both ways, i.e. POST and GET > >Yes, you can. > > > > > >The script blah.php can re

Re: [PHP] Session var read by form C++ CGI prog ?

2003-09-02 Thread John Bryan
On Tuesday, September 02, 2003, at 02:04PM, Raditha Dissanayake <[EMAIL PROTECTED]> wrote: >Hello, >If you use yes they will be part of the input >stream. What i suggested was you have > then you can >retrieve the query string variable from the env. (at least this works >with perl cgi and i

Re: [PHP] Session var read by form C++ CGI prog ?

2003-09-02 Thread John Bryan
On Tuesday, September 02, 2003, at 01:55PM, CPT John W. Holmes <[EMAIL PROTECTED]> wrote: >From: "John Bryan" <[EMAIL PROTECTED]> > >> If so, the problem is that this file that is being uploaded >> via the form to the program MyCppProg.exe gets sent >

Re: [PHP] Session var read by form C++ CGI prog ?

2003-09-02 Thread John Bryan
On Tuesday, September 02, 2003, at 02:04PM, Raditha Dissanayake <[EMAIL PROTECTED]> wrote: >Hello, >If you use yes they will be part of the input >stream. What i suggested was you have > then you can >retrieve the query string variable from the env. (at least this works >with perl cgi and i

RE: [PHP] Session var read by form C++ CGI prog ?

2003-09-02 Thread John Bryan
On Tuesday, September 02, 2003, at 01:32PM, Ford, Mike [LSS] <[EMAIL PROTECTED]> wrote: >On 02 September 2003 19:22, Raditha Dissanayake wrote: > >> Hi, >> >> Had a similar problem when building upload progress bar. Initially i >> used cookies but that had a few minor hiccups. What you can do i

Re: [PHP] Session var read by form C++ CGI prog ?

2003-09-02 Thread John Bryan
very quickly. > >oh and btw the correct way to set a cookie is with session_register(), >$_SESSION is used for retrieval. > >John Bryan wrote: > >>I need to use something like a session variable to make a variable available to an >>existing form-invoked C++ progra

[PHP] Session var read by form C++ CGI prog ?

2003-09-02 Thread John Bryan
I need to use something like a session variable to make a variable available to an existing form-invoked C++ program which takes as input a file being uploaded. Is this even do-able ??If so, what am I missing here ??? The C++ prog used to use the REMOTE_USER env var set by the web server b