I am currently working on a paypal IPN script.
I just need a little help. Instead of using a paypal button, is it possible to use a text link (<a href=""></a>) instead?
If so, how would I do this from the form + all the hidden items.
Shouldn't be an issue you just have to make the href act as a the submit button would:
<a href="javascript: document.form_name.submit()">Text Link</a>
works, thanks a lot 🙂