RE: a little loop help plz

2005-10-02 Thread Adrian Lynch
If I understand correctly, you're looking to loop over two lists at the same time. If the lists are productIDs and quantities then try the following: cfloop from=1 to#ListLen(productIDs)# index=i cfoutput p Product ID: #ListGetAt(productIDs, i)#br

RE: a little loop help plz

2005-10-02 Thread Tim Laureska
Thanks Adrian... I was able to use that example as a guide for what I needed. A new thing learned today! -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Sunday, October 02, 2005 4:06 AM To: CF-Talk Subject: RE: a little loop help plz If I understand correctly