Here's an example of what i'm talking about
:
http://www.wrestlingforum.com/register.php?do=start
How did they put that page into thier registration page I wonder... but it's exactly what i'm looking for for the subscription page.
Once a user clicks a button in the appropriate column, it takes them to the built-in page to buy that subscription.
----
Upon further inspection of the payments.php page...
If you view the source of the page for a paypal transaction, you find normal looking form submission code:
Code:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<fieldset class="fieldset">
<legend>Order Using PayPal</legend>
<div style="padding:3px">
<div style="margin-bottom:3px">To pay for your subscription using <a href="http://www.paypal.com" target="_blank">PayPal</a> click the button below and follow the onscreen instructions.</div>
<div>
<input type="hidden" name="cmd" value="_xclick-subscriptions" />
<input type="hidden" name="business" value="<removed>" />
<input type="hidden" name="item_name" value="Member Subscription" />
<input type="hidden" name="item_number" value="<removed>" />
<input type="hidden" name="currency_code" value="USD" />
<input type="hidden" name="a3" value="5.00" />
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M">
<input type="hidden" name="src" value="1">
<input type="hidden" name="sra" value="1">
<input type="hidden" name="no_shipping" value="1" />
<input type="hidden" name="shipping" value="0.00" />
<input type="hidden" name="return" value="<removed>" />
<input type="hidden" name="cancel_return" value="<removed>" />
<input type="hidden" name="notify_url" value="<removed>" />
<input type="hidden" name="custom" value="<removed (username)>" />
<input type="hidden" name="no_note" value="1" />
<input type="hidden" name="tax" value="0.00" />
<input type="submit" class="button" style="font-weight:normal" value="Order Using PayPal" />
</div>
</div>
</fieldset>
</form>
So, my question is... can I make my own page, with my own buttons, and just paste that info in from the "payments.php?do=order" pages for each package that I create.
Will that work? (at least for paypal payments)