use CGI qw(:standard);

2004-06-14 Thread Werner Otto
When using this module and Im printing out a checkbox group: print checkbox_group(-name='hdel',-values=[$hostname]),; is there a way to sneak through a hidden value $hostip in there somehow aswell? -- Kind Regards, Otto -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

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

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 components

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 button

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