Re: How to generate a table ?

2001-06-15 Thread Curtis Poe
--- "Moon, John" <[EMAIL PROTECTED]> wrote: > Could someone please suggest a "simpler" way to generate this table ... [snip] Without going into the usual "use CGI.pm's HTML shortcuts" argument, I'd say they are cleaner, once you get used to them. The following only took me a couple of minutes t

RE: How to generate a table ?

2001-06-15 Thread Tillema, Glenn
> -Original Message- > From: Curtis Poe [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 15, 2001 6:00 PM > To: [EMAIL PROTECTED] > Subject: RE: How to generate a table ? > > > Heh. I keep saying 'factor out common elements', but I > didn't b

RE: How to generate a table ?

2001-06-15 Thread Tillema, Glenn
#!/usr/local/bin/perl -w use CGI qw/:standard *table/; $cust_id = "cust"; $acct = "account"; $title = "title"; %hofEntries = (1 => {label => "Customer Id", name => "NEWCUST_ID", def => $cust_id, size => "10",}, 2 =>

RE: How to generate a table ?

2001-06-15 Thread Curtis Poe
Heh. I keep saying 'factor out common elements', but I didn't bother to do it in my snippet :) --- "Tillema, Glenn" <[EMAIL PROTECTED]> wrote: > #!/usr/local/bin/perl -w > > use CGI qw/:standard *table/; > > $cust_id = "cust"; > $acct = "account"; > $title = "title"; > > %hofEntries = (1 =>

RE: How to generate a table ?

2001-06-18 Thread Moon, John
ad habits are hard to break ! John W Moon -Original Message- From: Tillema, Glenn [mailto:[EMAIL PROTECTED]] Sent: June 15, 2001 18:56 To: 'Moon, John'; [EMAIL PROTECTED] Subject: RE: How to generate a table ? #!/usr/local/bin/perl -w use CGI qw/:standard *table/;

RE: How to generate a table ?

2001-06-19 Thread Tillema, Glenn
> -Original Message- > From: Moon, John [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 18, 2001 7:36 PM > To: Tillema, Glenn; 'Curtis Poe'; [EMAIL PROTECTED] > Subject: RE: How to generate a table ? > > > Glenn & Curtis; > > Thanks for the