RE: calling a external cgi from a form passing parameters

2001-06-14 Thread Kris Cook
bugs: I see what I MEANT to type, every time). > -Original Message- > From: Abel Lucano [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 14, 2001 12:02 PM > To: Curtis Poe > Cc: [EMAIL PROTECTED] > Subject: Re: calling a external cgi from a form passing parameters >

Re: calling a external cgi from a form passing parameters

2001-06-14 Thread Curtis Poe
--- Abel Lucano <[EMAIL PROTECTED]> wrote: > > my $uri_chars = '\x00-\x29\x2b\x2c\x2f\x3a-\x40\x5b-\x5e\x60\x7b-\xff'; > > Good points Curtis and thanks for your answers; I've applied (and > understood) all your advices but when I fill the forms with valid entries, > the submit is still passing

Re: calling a external cgi from a form passing parameters

2001-06-14 Thread Abel Lucano
On Wed, 13 Jun 2001, Curtis Poe wrote: > > There are a few problems with your script. > > First, as mentioned earlier, Perl will not interpret values in strings in single >quotes. You'll > need double quotes. > > Second, you have not assigned values to those variables (lines 17 and 18) until

Re: calling a external cgi from a form passing parameters

2001-06-13 Thread Mark Bergeron
>From what I understand, you should try and declare your $username, $password before >you try and pass it in the query string. Also, I don't see where in the script you >compare it against anything. Of course I may be thinking dB terms. Mark Bergeron -Original Message- From: "Abel Luca

Re: calling a external cgi from a form passing parameters

2001-06-13 Thread Curtis Poe
--- Abel Lucano <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > why this doesn't pass $username and $password to checkuser.cgi script?? > when the form is filled out I only see > > http://external-server/cgi-bin/checkuser.cgi?user=$usuario&pass=$contrasena > > and $usuario it's not replaced by

RE: calling a external cgi from a form passing parameters

2001-06-13 Thread Billy Macdonald
> -Original Message- > From: Abel Lucano [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 13, 2001 3:35 PM > To: [EMAIL PROTECTED] > Subject: calling a external cgi from a form passing parameters > > > Hi everyone, > > why this doesn't pass $username and $password to checkuser.cgi scr