Re: Using CGI.pm to set up textfields and then parse them

2009-01-07 Thread marys
On Jan 5, 8:33 pm, g...@lazymountain.com (Greg Jetter) wrote: On Monday 05 January 2009 2:22:08 pm marys wrote: Does anyone know how to set up a large number of textfields for data input and then parse them conveniently?  In the CGI.pm book it shows how to use the form element

Using CGI.pm to set up textfields and then parse them

2009-01-05 Thread marys
Does anyone know how to set up a large number of textfields for data input and then parse them conveniently? In the CGI.pm book it shows how to use the form element 'textfield' like so: #!/usr/bin/perl -wT use CGI::Carp qw(fatalsToBrowser); use CGI ':standard'; use CGI::Pretty; use strict; use

Re: awk command in script?

2008-11-21 Thread marys
On Nov 20, 4:58 pm, [EMAIL PROTECTED] (John W. Krahn) wrote: marys wrote: Hello: Hello, Does anyone know how to use ‘awk’ in a script? perl and awk have a lot of similar features so its usually preferable to use perl in a perl program instead of awk. It must have a different syntax

Re: awk command in script?

2008-11-21 Thread marys
On Nov 21, 4:47 pm, [EMAIL PROTECTED] (Owen) wrote: On Fri, 21 Nov 2008 03:41:21 -0500 michael spellman [EMAIL PROTECTED] wrote: On Thu, Nov 20, 2008 at 8:32 PM, Owen [EMAIL PROTECTED] wrote: On Thu, 20 Nov 2008 06:32:51 -0800 (PST) marys [EMAIL PROTECTED] wrote: I am

awk command in script?

2008-11-20 Thread marys
Hello: Does anyone know how to use ‘awk’ in a script? It must have a different syntax than the unix analog, as does the ‘grep’ command. For grep, the syntax in the c-shell is: “grep ‘string’ , but for Perl the delimiters are slashes: $x = grep / string/ line. Maybe the same thing is going on with

Re: using cgi.pm to create and interpret textboxes

2008-11-18 Thread marys
On Nov 11, 10:46 am, [EMAIL PROTECTED] (Dermot Paikkos) wrote: Hi -Original Message- From: marys [mailto:[EMAIL PROTECTED] Sent: 11 November 2008 11:20 To: [EMAIL PROTECTED] Subject: using cgi.pm to create and interpret textboxes Hello: Can anyone tell me how to use

using cgi.pm to create and interpret textboxes

2008-11-11 Thread marys
Hello: Can anyone tell me how to use CGI.pm's 'textfield' function to set up a form with a lot of fill-in fields and then parse them? I tried to read three values from input boxes but the output seems to be the name of the textbox and not its value. Here are two scripts: (1) a.cgi: