Here is my situation. I need to have a PayPal donate button show up in a signature in a phpbb forum. I can make the button show up and link to somewhere using BBCode as no html is allowed.
Now how do I make a page that this button links to that will redirect to the proper PayPal page.
This is the PayPal code, minus the button image:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----
aaaabbBBBBBCCCCDDDdddEEEetc
-----END PKCS7-----
">
</form>
So can I make a page whose only function is to submit this form ? Make sense?