Hi, I am trying to update an Array a quantity field. What happens is the user selects products and then views these in a table in the checkout beside each product is an update button. Each product has one which is generated in a loop. At the moment the user selects this button which takes them to another page the update.cfm page where the user can change the quantity. However what I am trying to do in the checkout page is increment the aray index by 1 rom the beginning of the Array to the end of the Array in a loop so that each update button incremented has an index value from 1 onwards etc. The code I have to start with is shown below:
When the user passes their mouse over the update button the index value is shown to be passed to the update page in the example below I have just typed this in so the index value for each button will always be 1 this has to change to 2 and so on. I know I have to do a loop in which the index is incremented by 1 on each turn of the loop, but I am not sure of the syntax? Any ideas. I do have a loop already created that loops through to display the products to the user and that creates these buttons the loop is
<cfloop index="rowCount" from="1" to="#ArrayLen(session.basket)#" step="1">
<A
href="update.cfm?index=1"
target=mainFrame><IMG border=0 height=28 name=Image13
src="checkout_files/prod_update.gif" width=67></A> </TD>
</TR></TBODY></TABLE>
When the user passes their mouse over the update button the index value is shown to be passed to the update page in the example below I have just typed this in so the index value for each button will always be 1 this has to change to 2 and so on. I know I have to do a loop in which the index is incremented by 1 on each turn of the loop, but I am not sure of the syntax? Any ideas. I do have a loop already created that loops through to display the products to the user and that creates these buttons the loop is
<cfloop index="rowCount" from="1" to="#ArrayLen(session.basket)#" step="1">
<A
href="update.cfm?index=1"
target=mainFrame><IMG border=0 height=28 name=Image13
src="checkout_files/prod_update.gif" width=67></A> </TD>
</TR></TBODY></TABLE>