in reply to Re: perl script without cgi
in thread perl script without cgi
This is broken.
As for the first bullet point, you might think that your code allows for multiple values, but it doesn't. If you have multiple values for one param name, you simply concatenate them. Consider the following:
color=red&color=blueIn your code, that results in:
$in{ 'color' } == 'redblue'
That's probably going to cause someone problems.
Hope you don't take this personally, and welcome to the Monastery! :)
Cheers,
Ovid
Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (Ovid) Re: Re: perl script without cgi
by chlige (Initiate) on Nov 08, 2001 at 03:22 UTC |