New Perl User needs help with POST in perl

2004-01-29 Thread PerlDiscuss - Perl Newsgroups and mailing lists
I have written my HTML code to where it uses POST to collect information. Where do I start to write a script that collects the data from the web site, places the input into a dbm file, then places a 1 next to it like an array? Some of the data in the file will have zeros, while the ones that are in

Re: New Perl User needs help with POST in perl

2004-01-29 Thread wolf blaum
For Quality purpouses, PerlDiscuss - Perl Newsgroups and mailing lists 's mail on Thursday 29 January 2004 23:49 may have been monitored or recorded as: > I have written my HTML code to where it uses POST to collect information. > Where do I start to write a script that collects the data from the

RE: New Perl User needs help with POST in perl

2004-01-29 Thread Dan Muey
> I have written my HTML code to where it uses POST to collect > information. Where do I start to write a script that collects > the data from the web site, places the input into a dbm file, use CGI 'param'; my $email = param('email'); dbm file?? perldoc -f open > then places a 1 next to it li

Re: New Perl User needs help with POST in perl

2004-01-30 Thread Chris Reddekopp
rsday, January 29, 2004 5:34 PM Subject: RE: New Perl User needs help with POST in perl > I have written my HTML code to where it uses POST to collect > information. Where do I start to write a script that collects > the data from the web site, places the input into a dbm file, u

Re: New Perl User needs help with POST in perl

2004-01-30 Thread R. Joseph Newton
Chris Reddekopp wrote: > My apologies. Let me explain better... > > In the dbm file will be the array with the customer's email address with a > value of 1 or 0 next to it. It is not always a good idea to decide in advance what tools you need for the job. It sounds like this one is a good candid