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
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
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