Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfset donation = []>
  2. <cfset benefits = []>
  3. <cfset loop = 1>
  4. <CFSET GetCart = SESSION.MyShoppingCart.List()>
  5. <cfloop query="GetCart">
  6.  <cfset donation[loop] = "#GetCart.donation#">
  7.  <cfset benefits[loop] = "#GetCart.benefits#">
  8.  <cfoutput> #loop#: #donation[loop]# + #benefits[loop]# <br /></cfoutput>
  9.   <cfset loop = loop + 1>
  10.   <cfdump var=#donation#><br/>
  11. </cfloop>
  12. <cfoutput> Total: #ArraySum(donation)# #ArrayLen(donation)# <br /></cfoutput>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement