I want to send a payment URL for a product to a client for payment but I can't figure out how to get it out of the code that's generated by a button. Any ideas? thanks.
11-01-2011 01:50 PM
Create a page that's nothing but the button form, then tell the form to auto-submit on page load. Something like this (untested, but it should work in theory):
<body onload="document.forms[0].submit();">
11-01-2011 06:48 PM