Skip to main content
Inspiring
October 23, 2006
Question

Horizontal Looping

  • October 23, 2006
  • 3 replies
  • 264 views
Can someone tell me how this done or point me to a source or tute on
the web?

I want to spead the content of a small table horizontally on a
shopping cart page. The data is retrieved from a Dbase.

Thanks.

--
Jerry
This topic has been closed for replies.

3 replies

Inspiring
October 23, 2006
jdeline gives you the basics. I'd suggest you not scroll forever because of people like me who refuse to use horizontal scroll bars.
Inspiring
October 23, 2006
On Mon, 23 Oct 2006 14:10:27 +0000 (UTC), "jdeline"
<jdeline@deline.com> wrote:

>Something like the concept code below should work.
>
> <CFQUERY NAME="myQuery" ... >
> SELECT stuff FROM myCart WHERE ...
> </CFQUERY>
>
> <TABLE>
> <TR>
> <CFOUTPUT QUERY="myQuery">
> <TD>#stuff#</TD>
> </CFOUTPUT>
> </TR>
> </TABLE>

thnx for your help. I wan't as clear as i might have been.

i want that table to repeat itself horizontally.

as:

x x x x

--

Jerrry
October 23, 2006
Something like the concept code below should work.