The Purchase URL allows you to specify your own web page to be shown when your client clicks on the “Buy Now” button of your secured products.
In other words, when your clients click on “Buy Now” they see your Web page instead of Secure-eBook's default page.
Your page should have its own “Buy Now” button which should link to your product's Default Purchase URL.
If you don't want Secure-eBook's default page to show at all, you can send information to the Default Purchase URL using a form.
Secure-eBook will need your client's name and email - this is where the system will send the activation key or temporary download link. It also needs country and state (or province) information as well.
This information can all be sent via a POST form.
Here's what variables Secure-eBook will look for:
| Variable Name | Description |
|---|---|
| rname | Client's name |
| remail1 | Client's eMail |
| remail2 | Client's eMail confirmation |
| rcountry | Client's country (specify '-' if you don't want to use this information) |
| rstate | Client's state or province (specify '-' if you don't want to use this information) |
Please note that if any information is invalid, the Secure-eBook default page will appear and offer your client to correct the information.
If the information is valid, Secure-eBook will automatically interface with your configured payment process.
When the transaction is completed, your client will be taken you the product's ”Thank You Page”
Here's a simple sample HTML form:
<form action="YOUR PRODUCT'S DEFAULT PURCHASE URL" method="post"> <table> <tr> <td>Enter your name: </td> <td><input type="text" name="rname" /></td> </tr> <tr> <td>Enter your email address: </td> <td><input type="text" name="remail1" /></td> </tr> <tr> <td>Confirm your email address: </td> <td><input type="text" name="remail2" /></td> </tr> <tr> <td>Choose your country: </td> <td><input type="text" name="rcountry"/></td> </tr> <tr> <td>Choose your state/province: </td> <td><input type="text" name="rstate"/></td> </tr> <tr><td colspan="2" ><input type="submit" class="button" value="Submit"/></td></tr> </table> </form>