Overview
Standard GET form for autoresponder signup. For this method, visitor will leave your website each time the button is pressed. It's not as slick as Ajax, but it's much easier to integrate. If the Ajax seems a little complicated, you should use this method or the POST method.

Please read to this information carefully.
Add the following code anywhere between your pages <body></body> tags
This code should go between your body tags.
Required GET Parameters
The following parameters are required:

Name Value
nm For first name field.
nm2 For last name field.
em For email field.
cid Hidden field ONLY. Contains campaign ID.
mthd Hidden field ONLY. Required so system knows GET method is invoked.
Customisation
You should use an existing website's CSS file or inline styles to format your form. The form code provided is basic and has no formatting.
Multiple Boxes on Same Page
You can have multiple boxes on a single page. Just copy and paste the code, each form will work independently.
Custom Field Capture
Unlimited form data can be captured at the point of signup. This is useful if you need to pass other data to the system. For this to work, add hidden form boxes within the form field. The name of the input boxes isn't important. An example:

<input type="hidden" name="some_field_name" value="my value">
<input type="hidden" name="some_other_field_name" value="my other value">
The form fields must NOT contain the same names as the required fields above.

For the GET method, arrays are also supported.

<input type="hidden" name="arr[ayumi]" value="hamasaki">
<input type="hidden" name="arr[koda]" value="kumi">
Wordpress Integration
This is an easy option to add to Wordpress. Just copy code into any page or custom template.