Passing on contact details on the order form

You can have customer data (e.g. email address, first name, last name, etc.) automatically transferred from your landing page to the AffiliCon order form. This means that the order form is already pre-filled. Your customer only has to add their payment details.

terms

field names

E-Mail-Adress

basic_addr_email

Telephone Number

basic_addr_phone

Company

billing_addr_company

Firstname

billing_addr_firstname

Last name

billing_addr_lastname

Street

billing_addr_street_name

House Number

billing_addr_housnumber

Address suffix

billing_addr_street2

Postal code

billing_addr_zip

City

billing_addr_city

Country

billing_addr_country


Step by step

1. create a form that is sent via POST

<form action=”BESTELLFORMULAR_LINK” method=”post”>

Example:  <form action="https://secure.affilibank.de/affilicon/index?product=18465"method="post">

 

2. Create input fields for all values you want to pass to the order form.

<input type=”text” name=”Feldname” />                                     

Example first name:  <input type=”text” name="billing_addr_firstname"/>

Tip for professionals: You can of course also use "hidden" fields if you already know the customer data, e.g. through a login.


3. Add a send button and close the form.

<input type="submit" /></form>

Tip for professionals: You can also use a graphic send button labelled with "Order now", for example.


You can find an example of the complete HTML code here:

Bestellformular: <form action=”https://secure.affilibank.de/affilicon/index?product=18465” method=”post”>

Vorname: <input type=”text” name=”billing_addr_firstname” /><br />

Nachname: <input type=”text” name=”billing_addr_lastname” /><br />

Straße: <input type=”text” name=”billing_addr_street” /><br />

Hausnummer: <input type=”text” name=”billing_addr_housenumber” /><br />

PLZ: <input type=”text” name=”billing_addr_zip” /><br />

Stadt: <input type=”text” name=”billing_addr_city” /><br />

E-Mail: <input type=”text” name=”billing_addr_email” /><br />

Button: <input type=”submit” /></form>

After the customer has entered his or her data in the contact form and clicked on the payment button, he or she is immediately redirected to the order form.

The information entered is transferred to the order form by the HTML code above.


Example

Your customer enters their data on your landing page.




The data will then be automatically transferred to the AffiliCon order form.