list delima

2002-10-01 Thread Emmet McGovern
I know im either overlooking something or i just have no clue. I have a shopping cart that has options pricing in it, and im having a hard time getting the prices of all the options to add up. The option IDs are in a ^ delimited list. I need to match the id to the price of the option in another

Re: list delima

2002-10-01 Thread Paul Giesenhagen
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 2:52 PM Subject: list delima I know im either overlooking something or i just have no clue. I have a shopping cart that has options pricing in it, and im having a hard time getting the prices of all the options to add up

Re: list delima

2002-10-01 Thread S . Isaac Dealey
cfset TotalOptPrice = 0 !--- Find how many options are added to this product, if any cfloop index=pricenum from=1 to=#ListLen(Options, ^)# !--- Set variable to option price --- cfset CurrentOptionPrice = #ListGetAt(OptionPrice, PriceNum,