in reply to Database Listing Question

What exactly is your question? What's wrong with the code presented?

Abigail

Replies are listed 'Best First'.
Re: Re: Database Listing Question
by lisaw (Beadle) on Jan 22, 2004 at 01:31 UTC
    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!
      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