> From: "MCMULLIN, NANCY" <[EMAIL PROTECTED]>
> Date: 2005/02/09 Wed PM 12:45:09 CST

If you're sure you're only getting back one row...
>    while (my $row = $sth->fetchrow_arrayref())
     my ($field1,$field2)=$sth->fetchrow_array())
Otherwise,
     while (my ($field1,$field2)=$sth->fetchrow_array())

>    {
>       print Tr( td( $field1, $field2 ) );
>       # note - I can print both values here 
  Well, where did you declare them?  I don't see them in your snippet, except 
for there...

>   }

HTH,
amonotod


--

    `\|||/         amonotod@    | sun|perl|windows
      (@@)         charter.net  | sysadmin|dba
  ooO_(_)_Ooo____________________________________
  _____|_____|_____|_____|_____|_____|_____|_____|

Reply via email to