On 2004-07-21, Michael Peters <[EMAIL PROTECTED]> wrote:
> Also, as a side note, why are you using DBIx::XHTML_Table. To me it
> would seem like that would definitely limit the control you have over
> the table layout, structure, look and feel, etc.
>
> When displaying tables like that from a db I usually use Class::DBI and
> make each element of a retrieve() an iteration of a TMPL_LOOP H::T or a
> [% FOR %] in TT.

For another perspective, I usually simply use this:

my $LoH = $DBH->selectall_arrayref("SELECT * FROM USERS",{Slice => {}});
$t->param( users_loop => $LoH );

Then I can easily design my own table design in HTML.

        Mark

-- 
 . . . . . . . . . . . . . . . . . . . . . . . . . . . 
   Mark Stosberg            Principal Developer  
   [EMAIL PROTECTED]     Summersault, LLC     
   765-939-9301 ext 202     database driven websites
 . . . . . http://www.summersault.com/ . . . . . . . .


---------------------------------------------------------------------
Web Archive:  http://www.mail-archive.com/[EMAIL PROTECTED]/
              http://marc.theaimsgroup.com/?l=cgiapp&r=1&w=2
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to