Home > Programming, Script Installation > Multi Form Fill-out Script

Multi Form Fill-out Script

April 18th, 2009

Synopsis:
1shoppingcart (http://www.1shoppingcart.com) is used for our normal database and auto responder maintenance. We also use go2meeting (https://www2.gotomeeting.com) and go2webinar (https://www2.gotowebinar.com) to host live events on the internet for our clients.

We are looking for a script (?) that
1. is web based
2. where clients will fill out their name and e-mail address in a web-based form
3. when they push submit, it will send the information to both 1shoppingcart and to go2meeting/Webinar
4. is configurable so that we can change both
a. the autoresponder where the data is being collected on (1shoppingcart); and
b. the Webinar event where the meeting info is being sent to.

Details and References:
1. A sample go2meeting form can be found at:
https://www2.gotomeeting.com/register/130244083

2. A sample 1shoppingcart form (HTML Code) is shown below:

<form name=”form1″ method=”post” action=”https://www.mcssl.com/app/contactsave.asp”>
<input name=”merchantid” type=”hidden” id=”merchantid” value=”62005″>
<input name=”ARThankyouURL” type=”hidden” id=”ARThankyouURL” value=”www.gozoneonline.com”>
<input name=”copyarresponse” type=”hidden” id=”copyarresponse” value=”1″>
<input name=”custom” type=”hidden” id=”custom” value=”0″>
<input name=”defaultar” type=”hidden” id=”defaultar” value=”388916″>
<input name=”allowmulti” type=”hidden” id=”allowmulti” value=”0″>
<input name=”visiblefields” type=”hidden” id=”visiblefields” value=”Name,Email1″>
<input name=”requiredfields” type=”hidden” id=”requiredfields” value=”Name,Email1″>
<table>
<tr>
<td>Name</td>
<td><input name=”Name” type=”text” size=”40″></td>
</tr>
<tr>
<td>Email</td>
<td><input name=”Email1″ type=”text” size=”40″></td>
</tr>
<tr align=”center”>
<td colspan=”2″>
<input type=”Submit” name=”cmdSubmit” value=”Submit”>
</td>
</tr>
</table>
</form>

Note that the following values are variable (we would change on a regular basis):
ARThankyouURL
defaultar

3. When someone signs up for one of our normal form on our site, we typically collect name (first and last) and e-mail address. This data is collected using the web form above that is placed on line for one of our web pages.
We are looking for a flexible solution that will allow a client to simply enter their name and e-mail data once, click


Multi Form Fill-out Script

Comments are closed.
Bear