rsennat has asked for the wisdom of the Perl Monks concerning the following question:
in one browser, when i pass a name it is printed properly. and opening another browser to run the same cgi with another name, prints the name entered in the previous browser.#!/usr/cisco/bin/perl -w use strict; use CGI; my $q = CGI->new; my $name = $q->param('name'); print_response( ); sub print_response { print "Content-type: text/plain\n\n"; print "Thank you, $name!"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: mod_perl and multi user environment - clashes with other users's data
by ikegami (Patriarch) on Dec 02, 2005 at 18:22 UTC | |
by rsennat (Beadle) on Dec 05, 2005 at 09:47 UTC | |
|
Re: mod_perl and multi user environment - clashes with other users's data
by rsennat (Beadle) on Dec 02, 2005 at 18:33 UTC | |
by perrin (Chancellor) on Dec 02, 2005 at 18:40 UTC | |
by ikegami (Patriarch) on Dec 02, 2005 at 18:43 UTC | |
by rsennat (Beadle) on Dec 02, 2005 at 18:46 UTC |