here is the problem I'm using CFHTTP with the Method="POST" to past form
variables to paypal but instead the page where I submit the first form comes up
instead of redirecting me to the paypal page. Any help on this would be greatly
appreciated.
thanks.


<cfif (FORM.pay_type) EQ "2ck">
<cflocation
URL="https://www2.2checkout.com/2co/buyer/purchase?sid=#FORM.sid#&demo=#FORM.dem
o#&total=#total#&card_holder_name=#FORM.card_holde r_name#&street_address=#FORM.s
treet_address#&city=#FORM.city#&state=#FORM.state# &country=#FORM.country#&zip=#F
ORM.zip#&phone=#FORM.phone#&email=#FORM.member_ema il#">
<cfelseif (FORM.pay_type) EQ "pp">
<cfhttp URL="https://www.paypal.com/cgi-bin/websrc" Method="POST"
redirect="yes">
<cfhttpparam name="amount" type="FormField" value="#total#">
<cfhttpparam name="no_shipping" type="FormField" value="1">
<cfhttpparam name="img_url" type="FormField"
value="http://www.ynrgifts.com/store/images/ynr_logo.gif">
<cfhttpparam name="cancel_return" type="FormField"
value="http://www.ynrgifts.com">
<cfhttpparam name="cdm" type="FormField" value="_xclick">
<cfhttpparam name="return" type="FormField" value="#FORM.return#">
<cfhttpparam name="business" type="FormField" value="reya276@yahoo.com">
</cfhttp>
<cfelse>
</cfif>