RE: passing form values to another Perl script

2001-07-19 Thread Rachel Coleman
On Wed, 18 Jul 2001 [EMAIL PROTECTED] wrote: > > So how exactly do I add the error checking in there? > Hints anyone since I am very new to this whole process. http://gunther.web66.com/FAQS/taintmode.html has some good clear explanations. > I don't know that's what he asked about... he said he

RE: passing form values to another Perl script

2001-07-18 Thread Domenic . Santilli
So how exactly do I add the error checking in there? Hints anyone since I am very new to this whole process. Thanks "Brett W. McCoy"

Re: passing form values to another Perl script

2001-07-18 Thread Rachel Coleman
On Tue, 17 Jul 2001 [EMAIL PROTECTED] wrote: > At this point I have a Perl script that parses a text file and creates > a number o fHTML files according to command line arguments like date, > file_output, and so on. > I want a person to fill out a form, submit it, which then activates >

RE: passing form values to another Perl script

2001-07-17 Thread Bjorn Nilsen
nal Message- > From: Brett W. McCoy [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, 18 July 2001 2:25 p.m. > To: Bjorn Nilsen > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: RE: passing form values to another Perl script > > > On Wed, 18 Jul 2001, Bjorn Nilsen wrote: >

RE: passing form values to another Perl script

2001-07-17 Thread Brett W. McCoy
On Wed, 18 Jul 2001, Bjorn Nilsen wrote: > This is all true but not what he is asking. > > I know of one way, you can call a CGI script with the parameters that you > would normally feed into a form in the URL. > eg: http://test.com/test.pl?stuff="bla"&numbers=23 I don't know that's what he aske

RE: passing form values to another Perl script

2001-07-17 Thread Bjorn Nilsen
- > From: Brett W. McCoy [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, 18 July 2001 7:37 a.m. > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: passing form values to another Perl script > > > On Tue, 17 Jul 2001 [EMAIL PROTECTED] wrote: > > > Ha

Re: passing form values to another Perl script

2001-07-17 Thread Lisa Nyman
Hi, On Tue, 17 Jul 2001, Brett W. McCoy wrote: > The first rule of form validation is 'Do not trust the data from the > user'. > > The second rule of form validation is 'Do not trust the data from the > user'. And remember the correlary to Rules 1 and 2: All form data is from the user (not ju

Re: passing form values to another Perl script

2001-07-17 Thread Domenic . Santilli
Gotcha Thanks and where do you recommend I look? "Brett W. McCoy"

Re: passing form values to another Perl script

2001-07-17 Thread Brett W. McCoy
On Tue, 17 Jul 2001 [EMAIL PROTECTED] wrote: > Yeah I had thought about that but this is an internal app for a web > developer and only she will be using it. Regardless, it's good to get into proper programming habits for internal stuff also, IMHO. -- Brett ht

Re: passing form values to another Perl script

2001-07-17 Thread Domenic . Santilli
Yeah I had thought about that but this is an internal app for a web developer and only she will be using it. Of course I am listening to all suggestions since I am trying how to figure out to proceed from here.

Re: passing form values to another Perl script

2001-07-17 Thread Brett W. McCoy
On Tue, 17 Jul 2001 [EMAIL PROTECTED] wrote: > Has anyone out there created a form using the CGI.pm module then taken > the values submitted by the form and then used those values as command line > arguments to run another script? Before you do anything with those form values, make sure the