manish.rathi has asked for the wisdom of the Perl Monks concerning the following question:
Now, if a second request comes in with different set of parameters and same QUERY_STRING is holding the new values, then string that came with first requst will be lost.
Like this , if many request keep coming in, new threads will be opened up to handle each request. But how will all these threads be supplied string values that came with that particular request because QUERY_STRING will be holding the values that came with the last request ?
For some other variables, multiple requests dont make differece because they have same value for all the request e.g. server info. This issue is only for request specific variables like QUERY_STRING
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: QUERY_STRING environment variable for CGI
by cosmicperl (Chaplain) on Mar 11, 2009 at 23:43 UTC | |
by ikegami (Patriarch) on Mar 12, 2009 at 03:55 UTC | |
|
Re: QUERY_STRING environment variable for CGI
by wfsp (Abbot) on Mar 12, 2009 at 08:44 UTC |