rdering array ref that is the second parameter is optional. Since you
can't assume ordering on a hash.
I too would like suggestions on this approach if possible!
Bruce W. Lowther
OpenAuto Lead
Micron Technology, Inc.
Boise, Idaho
[EMAIL PROTECTED]
-Original Message-
From: Andrea Holstein [m
Jess Balint wrote:
>
> Hello all, I was wonder if there is a way to do this with less `$query->`'s.
> And yes, I know the table's not perfect. Any input would be appreciated.
> Thanks.
>
> ~Jess
>
> print $query->start_form,
> $query->start_table({-border=>undef}),
>
--- "Balint, Jess" <[EMAIL PROTECTED]> wrote:
> Are there any downsides to not using the OO syntax?
Not using the OO syntax can have some problems. First, you're importing the functions
into your
programs namespace. Consider:
#!/usr/bin/perl -wT
use strict;
use CGI qw/:standard/;
On Nov 9, Balint, Jess said:
>Are there any downsides to not using the OO syntax?
Well, importing a bunch of functions does what's called "polluting a
namespace". I puts a bunch of functions at your disposal, but at the
price of... well, putting them there.
You'd better make sure you don't alr
Are there any downsides to not using the OO syntax?
-Original Message-
From: Curtis Poe [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 09, 2001 2:40 PM
To: [EMAIL PROTECTED]; Balint, Jess
Cc: '[EMAIL PROTECTED]'
Subject: Re: CGI.pm Question
-- Jeff 'japhy' Piny
-- Jeff 'japhy' Pinyan <[EMAIL PROTECTED]> wrote:
> On Nov 9, Balint, Jess said:
>
> >Hello all, I was wonder if there is a way to do this with less `$query->`'s.
> >And yes, I know the table's not perfect. Any input would be appreciated.
> >Thanks.
>
> Don't use the OO syntax then.
>
> use C
On Nov 9, Balint, Jess said:
>Hello all, I was wonder if there is a way to do this with less `$query->`'s.
>And yes, I know the table's not perfect. Any input would be appreciated.
>Thanks.
Don't use the OO syntax then.
use CGI qw( :standard );
print
start_form,
start_table(...),
Hello all, I was wonder if there is a way to do this with less `$query->`'s.
And yes, I know the table's not perfect. Any input would be appreciated.
Thanks.
~Jess
print $query->start_form,
$query->start_table({-border=>undef}),
$query->Tr({-align=>CENTE