Legacy
Website integration requirements
The technical requirements a web page must meet to host an embedded eMarketeer form.
Last updated
Was this helpful?
The technical requirements a web page must meet to host an embedded eMarketeer form.
This article applies to Form (Legacy). For the current form editor, see Forms.
You can embed an eMarketeer form on your own site by pasting generated HTML into the page source. This article lists the environment requirements the page must meet for the form to work.
The HTML eMarketeer generates is stripped of design and validation so you can apply your own styles and validation scripts. The form submits via JavaScript for two reasons:
It's easy to add your own validation inside the existing function.
Spam bots that fill in forms with junk are filtered out, because they usually can't run JavaScript.
Paste the code into your site's source. Make sure the following requirements are met.
Make sure no other <form> tags conflict with the embed. Nested form tags do not work.
Make sure the page uses a Unicode charset. This keeps posted data stored correctly in eMarketeer regardless of input language. You can do this in a few ways.
Configure the web server to use Unicode for all pages by default.
Make sure the HTML on the page includes this meta tag:
If you use server-side scripts, set the charset per page.
PHP:
ASP:
Last updated
Was this helpful?
Was this helpful?
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><?php header('Content-Type: text/html; charset=utf-8'); ?><% Response.charset="utf-8" %>
