On 14 Feb 2002, at 15:51, Brian Warn wrote:

> When I run the code  below, information about the first column in each
> table in my list is excluded.  Any ideas why?
[snip]
>       @row_ary = $sth->fetchrow_array;

You've read that information into @row_ary, but then you never do 
anything with it.

>       while (($expl0,$expl1,$expl2) = $sth->fetchrow_array){
>               print "$expl0 ....... $expl1 ....... $expl2\n";
>       }

Now you're printing the rest of the information.

> sql, query, mysql, database

-- 
Keith C. Ivey <[EMAIL PROTECTED]>
Washington, DC

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to