Re: use CGI qw(:standard);

2004-06-11 Thread Camilo Gonzalez
Owen Cook wrote: On Fri, 11 Jun 2004, Werner Otto wrote: I am making use of use CGI qw(:standard); to create my form. I need to amend the size of a submit button and need to tell the button which script to call (ie. action=test.cgi). Where can I find documentation on all the attributes of the

Re: joining form input in parser

2004-06-11 Thread Wiggins d Anconia
Only re-inforced what you already stated, yep the truth hurts, doesn't mean it isn't the truth. Don't worry, I won't, and good chance others won't either. http://www.catb.org/~esr/faqs/smart-questions.html http://danconia.org > Having viewed your website, I can understand your reply. > Next ti

Re: joining form input in parser

2004-06-11 Thread Brad Lhotsky
Is this 2004? or 1994? I forgot. On Fri, Jun 11, 2004 at 08:09:52PM +1000, William Kolln wrote: > HI > > Any help will be greatly appreciated. > > The below statement is my parsing statement. It may be antiquated but it > works. > > I want to process input from a select form that has two names

Re: joining form input in parser

2004-06-11 Thread Wiggins d Anconia
> HI > > Any help will be greatly appreciated. > > The below statement is my parsing statement. It may be antiquated but it > works. If it does then you wouldn't need to ask right? It is antiquated, very, and shouldn't be used when there are much better ways to do this, specifically the CGI mod

RE: help with adjusting log file data?

2004-06-11 Thread Ron Goral
> -Original Message- > From: Charles K. Clarkson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 09, 2004 9:19 PM > To: 'Catriona Pure Scents'; [EMAIL PROTECTED] > Subject: RE: help with adjusting log file data? > > > From: Catriona Pure Scents wrote: > > : Hi

joining form input in parser

2004-06-11 Thread William Kolln
HI Any help will be greatly appreciated. The below statement is my parsing statement. It may be antiquated but it works. I want to process input from a select form that has two names and two name values name=group1 , value1= name=group2 , value2= IN the below statement,

Re: use CGI qw(:standard);

2004-06-11 Thread David Dorward
On 11 Jun 2004, at 09:57, Werner Otto wrote: I am making use of use CGI qw(:standard); to create my form. I need to amend the size of a submit button print $query->submit(-name=>'button_name', -size=>15, -value=>'value'); and need to tell the butt

Re: use CGI qw(:standard);

2004-06-11 Thread Owen Cook
On Fri, 11 Jun 2004, Werner Otto wrote: > I am making use of use CGI qw(:standard); to create my form. I need to > amend the size of a submit button and need to tell the button which script > to call (ie. action=test.cgi). Where can I find documentation on all the > attributes of the component

use CGI qw(:standard);

2004-06-11 Thread Werner Otto
Hi, I am making use of use CGI qw(:standard); to create my form. I need to amend the size of a submit button and need to tell the button which script to call (ie. action=test.cgi). Where can I find documentation on all the attributes of the components, or an example for my two queries would be