in reply to Re: Database Listing Question
in thread Database Listing Question

Hi Abigail, Currently the script will display each database item in a new table row. I'm trying to figure out how to list the items three(3) across as shown:
ITEM1 ITEM2 ITEM3 ITEM4 ITEM5 ITEM6
Thanks!

Replies are listed 'Best First'.
Re: Database Listing Question
by Abigail-II (Bishop) on Jan 22, 2004 at 01:38 UTC
    Your code doesn't make a row for each item. It creates a row for each row returned. However, in that row you have just one cell, and you separate the items with line breaks, which seems to confuse you in thinking that there's a row for each item.

    If you don't want the line breaks, then don't put them there! If you want columns, create them!

    Abigail