in reply to Re: Printing Categories from SQL search
in thread Printing Categories from SQL search
while ($pointer = $sth->fetchrow_hashref) { $category = $pointer->{'category'}; unless (!$category || $category ~~ @list) { print "<LI>$category\n"; } push (@list, "$category"); } #end while
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Printing Categories from SQL search
by kcott (Archbishop) on Sep 27, 2018 at 08:14 UTC | |
|
Re^3: Printing Categories from SQL search
by hippo (Archbishop) on Sep 27, 2018 at 08:07 UTC | |
|
Re^3: Printing Categories from SQL search
by wjw (Priest) on Sep 27, 2018 at 00:20 UTC |