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 eleme

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

2009-01-05 Thread Greg Jetter
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 'textfield' like so: > > #!/usr/bin/perl -wT > use CGI::Carp qw(fatalsToBrows

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 di

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 interp

RE: using cgi.pm to create and interpret textboxes

2008-11-12 Thread Dermot Paikkos
Hi > -Original Message- > From: marys [mailto:[EMAIL PROTECTED] > Sent: 11 November 2008 11:20 > To: beginners-cgi@perl.org > Subject: using cgi.pm to create and interpret textboxes > > Hello: > Can anyone tell me how to use CGI.pm's 'textfield' fu

Re: using cgi.pm to create and interpret textboxes

2008-11-11 Thread Matthew Whipple
On Tue, 2008-11-11 at 03:19 -0800, marys wrote: > 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

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: #!/usr/bin/

using CGI.pm for catalog

2003-03-04 Thread David Gilden
Hello, I am having a problem understanding why I can't get the data from the form page to CGI script. Here is the page in question: In the HTML some descriptive text goes here. ORDER QUANTITY In the PERL #!/u

Re: html redirect using CGI.pm

2002-12-09 Thread Octavian Rasnita
gt; To: "perl cgi" <[EMAIL PROTECTED]> Sent: Monday, December 09, 2002 11:44 PM Subject: RE: html redirect using CGI.pm print $query->redirect(-uri=>'http://somewhere.else/in/movie/land', -nph=>1); I found the example, but I dont

Re: Re: html redirect using CGI.pm

2002-12-09 Thread Mark Bergeron
ss"<[EMAIL PROTECTED]>, "perl cgi"<[EMAIL PROTECTED]> Date: Mon Dec 09 13:31:49 PST 2002 Subject: Re: html redirect using CGI.pm >You might want to just use redirect(), check perldoc CGI > >- >Scot Robnett >inSite Internet Solutions >[EMAIL PROTECTED]

RE: html redirect using CGI.pm

2002-12-09 Thread Scot Robnett
p://mydomain.homelinux.net/login.html'}) ]), p('Redirecting to login page'), end_html; - Scot Robnett inSite Internet Solutions [EMAIL PROTECTED] -Original Message- From: Admin-Stress [mailto:[EMAIL PROTECTED]] Sent: Monday, December

RE: html redirect using CGI.pm

2002-12-09 Thread Admin-Stress
wrote: > You might want to just use redirect(), check perldoc CGI > > - > Scot Robnett > inSite Internet Solutions > [EMAIL PROTECTED] > > > > -Original Message- > From: Admin-Stress [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 09, 2002 2:42 PM &

RE: html redirect using CGI.pm

2002-12-09 Thread Scot Robnett
You might want to just use redirect(), check perldoc CGI - Scot Robnett inSite Internet Solutions [EMAIL PROTECTED] -Original Message- From: Admin-Stress [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 2:42 PM To: perl cgi Subject: html redirect using CGI.pm Hi, Could

html redirect using CGI.pm

2002-12-09 Thread Admin-Stress
Hi, Could someone check my code below? I need to redirect to a html using CGI.pm perl module. But when I executed, I got blank page. If I commented out $cgi->start_html ... it's working fine, but no redirection. $cgi = new CGI; sub Error { my ($msg) = @_; print "";

Using CGI.pm [WAS Re: Displaying Problems]

2002-06-25 Thread John Brooking
I tend to always use CGI.pm to get the parameters, but I may or may not use it to output HTML. If it's simple HTML, I will, because it's easier and safer, but if it's complicated, like a lot of JavaScript in the header, or for most form input controls, I just use print statements, either normal on

Re: Using CGI.pm

2002-03-19 Thread Curtis Poe
--- Octavian Rasnita <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a question about using CGI.pm. > > How it is better? To print directly the html code with > print " ... "; etc. or > > to print using the CGI.pm > print $q-> start_htm

Re: Using CGI.pm

2002-03-18 Thread Mark Bergeron
Well, If your using CGI.pm you have the power and flexibility of using the object parameters like "q->" it's really a great short hand for coding pages esspecially for headers and footes and tables and style sheets and the like. Of course you can blend CGI.pm formatted c

Re: Using CGI.pm

2002-03-18 Thread zentara
On Sun, 17 Mar 2002 13:11:19 +0200, [EMAIL PROTECTED] (Octavian Rasnita) wrote: >I have a question about using CGI.pm. > >How it is better? To print directly the html code with >print " ... "; etc. or > >to print using the CGI.pm >print $q-> start_html(..

Using CGI.pm

2002-03-17 Thread Octavian Rasnita
Hi all, I have a question about using CGI.pm. How it is better? To print directly the html code with print " ... "; etc. or to print using the CGI.pm print $q-> start_html(...); etc. Does it work faster in a way or another, or are there any advantages? I saw that some th

Expire a page using CGI.pm doesn't work for IE 5

2002-02-22 Thread Lee, John
Hi all, I have been using CGI.pm to code my PERL cgi scripts and I want to set a time for the webpage to expire. I coded the expire parameter as below but it never worked in Microsoft Internet Explorer! print header(-expires=>+5s); I found out that the expire parameter works for me in Netsc

passing a hash using cgi.pm

2002-01-06 Thread Josiah Altschuler
Hi. I'm having trouble passing a hash from one program to another through a link using cgi.pm. My first program passes the hash like this (it's actually a hash that is one element of an array of hashes): print pre a ( { -href => "http://140.247.111.176/cgi-bin/redun