Hello all, I wanted to ask a quick question about paypal transactions.
I was looking at the payapl tutorial at easycfm.com ( http://tutorial23.easycfm.com/) but I have run into a problem. There doesn't seem to be a form field variable passed back when the transaction is sent from paypal. <CFSET str="cmd=_notify-validate"> *<CFLOOP INDEX="TheField" list="#Form.FieldNames#"> <!--- problem line --->* <CFSET str = str & "&#LCase(TheField)#=#URLEncodedFormat(Evaluate(TheField))#"> </CFLOOP> <CFIF IsDefined("FORM.payment_date")> <CFSET str = str & "&payment_date=#URLEncodedFormat(Form.payment_date)#"> </CFIF> <CFIF IsDefined("FORM.subscr_date")> <CFSET str = str & "&subscr_date=#URLEncodedFormat(Form.subscr_date)#"> </CFIF> What I would like to do is this: I have a client that setup to accept donations. Donations can be made at a certain dollar value or it can be setup like a subscription over a period of months. Once the donation is made, and the user is sent to the "donation successful page I would like to be able to pull information from the donation (ie: user name, amount etc) this way I could generate a receipt and store that information in the database. Is there a simple way to do this? Thanks in advance! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306302 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

