I set up a "Buy Now" button that works fine for me, but the following code for "Subscribe": <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="XXXXXXXXXX">
<input type="hidden" name="item_name" value="XXXXXXXXXX.COM Subsc
ription for USERID_XXXX">
<input type="image" src="https://www.paypalobjects.com/WEBSCR-999-9999999-1/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-999-9999999-1/en_US/i/scr/pixel.gif" width="1" height="1">
</form> goes to the PayPal login screen, and then to the user's status page. The above code will do "the right thing" if the user logs into PayPal first, then without logging out, comes to my site and clicks my Subscribe button. What am I doing wrong?
... View more