RE: CGI.pm Question

2001-11-12 Thread blowther
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

Re: CGI.pm Question

2001-11-10 Thread Andrea Holstein
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}), >

RE: CGI.pm Question

2001-11-09 Thread Curtis Poe
--- "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/;

RE: CGI.pm Question

2001-11-09 Thread Jeff 'japhy' Pinyan
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

RE: CGI.pm Question

2001-11-09 Thread Balint, Jess
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

Re: CGI.pm Question

2001-11-09 Thread Curtis Poe
-- 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

Re: CGI.pm Question

2001-11-09 Thread Jeff 'japhy' Pinyan
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(...),

CGI.pm Question

2001-11-09 Thread Balint, Jess
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