Forms in Dreamweaver CS6
I created forms many years ago in Dreamweaver CS6 and have had no trouble until now. I have moved to a new web host (they using an IMAP server as my last web host did). But, while those filling in forms see the screen saying 'Thank you for filling in...' which also shows what they have filled in, I never get the data in an email as I always used to. They say that I should insert:
Server: localhost
Port: 25
Encryption: none
Authentication: No
in the Perl script. Don't understand that.
I do hope someone can help me; it is so important that I get this information. I am not a developer; I'm not very clever really.
My coding as a result of setting up the most important form in Dreamweaver is:
<form id="form1" name="form1" method="post" action="cgi-bin/formmail.pl">
<tr>
<td width="216"><h2>Company address</h2></td>
<td width="434"> </td>
</tr>
<tr>
<td><p>
<label for="Contact">Your name as contact (for form checking only - will not appear in Directory)</label>
</p></td>
<td><p>
<input type="text" name="Contact" id="Contact" />
</p></td>
</tr>
<tr>
<td> </td>
</tr>
<td><p>
<label for="label">Your company name:</label>
</p></td>
<td><label for="Company"></label>
<p>
<input type="text" name="Company" id="Company" />
</p></td>
</tr>
<td> </td>
<tr>
<td><p>
<label for="Address">Your company's address (including postcode):</label>
</p></td>
<td><p>
<textarea name="Address" id="Address" cols="45" rows="5" ></textarea>
</p></td>
</tr>
<tr>
<td><p>
<label for="email: ">Your email address for form checking if necessary (will not appear in Directory): </label>
</p></td>
<td><p>
<input type="text" name="email" id="email" />
</p></td>
</tr>
<tr>
<td colspan="2"><p align="center">You may clear and restart at any time </p>
<label for="button"></label>
<div align="center">
<input type="reset" name="button" id="button" value="Start again" />
</div></td>
</tr>
<tr>
<td><label for="tel: ">Telephone number</label></td>
<td><p>
<input type="text" name="tel" id="tel" />
</p></td>
</tr>
<tr>
<td><p>Fax number:</p></td>
<td><p>
<label for="fax: "></label>
<input type="text" name="fax" id="fax" />
</p></td>
</tr>
<tr>
<td><p><label for="mail: ">Email address: </label></p></td>
<td><p><input type="text" name="mail" id="mail" /></p></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td><p>
<label for="Website: ">Website address: </label>
</p></td>
<td><p>
<input type="text" name="Website" id="Website" />
</p></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2"><h2>Membership of organisations</h2></td>
</tr>
<tr>
<td colspan="2"><p>Please check all of which you are a member</p></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2"><p>*Companies which have staff who, by completing training, are 'BPA approved' should not mark the BPA box unless they are actually <em>members</em>. Subsidiary companies of BPA members should not check this box unless they themselves are BPA members</p></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Organisations" id="BFA" value="BFA" />
</p></td>
<td><p>
<label for="BFA">BFA</label>
</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Organisations" id="BPA" value="BPA" />
</p></td>
<td><label for="BPA"></label>
<p>*BPA</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Organisations" id="BPS" value="UKPS" />
</p></td>
<td><p>
<label for="BPS">UKPS</label>
</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Organisations" id="CBI/EIG" value="CBI/EIG" />
</p></td>
<td><label for="CBI/EIG"></label>
<p>CBI Explosives Industry Group</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Organisations" id="IExpE" value="IExpE" />
</p></td>
<td><label for="IExpE"></label>
<p>Institute of Explosives Engineers</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Organisations" id="PGI" value="PGI" />
</p></td>
<td><label for="PGI"></label>
<p>PGI</p></td>
</tr>
<tr>
<<td><p>
<input type="checkbox" name="Organisations" id="TESA" value="TESA" />
</p></td>
<td><label for="PGI"></label>
<p>TESA</p></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2"><h2>Products and Services (please check as appropriate)</h2></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Manufacturer" id="Manufacturer" value="Manufacturer" />
</p></td>
<td><p>
<label for="M">Manufacturer from basic raw materials</label>
</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Supplier" id="Supplier" value="Supplier" />
</p></td>
<td><p>
<label for="Supplier">Supplier to wholesale / trade buyers</label>
</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Importer" id="Importer" value="Importer" />
</p></td>
<td><p>
<label for="Importer">Importer</label>
</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Displays" id="Operator fired" value="Operator fired" />
</p></td>
<td><p>
<label for="Operator fired">Firer of operator fired displays</label>
</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Display kits" id="Display kits" value="Self fire" />
</p></td>
<td><p>
<label for="Display kits">Supplier of display packs for customer firing</label>
</p></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2"><h2>Shop goods</h2></td>
</tr>
<tr>
<td colspan="2"><p>Boxed</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Shop goods boxed" id="Shop goods boxed" value="Direct" />
</p></td>
<td><p>
<label for="Shop goods boxed Direct">Direct to customers</label>
</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Shop goods boxed" id="Shop goods boxed" value="Shops" />
</p></td>
<td><p>
<label for="Shop goods boxed through shops">Through shops</label>
</p></td>
</tr>
<tr>
<td colspan="2"><p>Loose</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Shop goods loose" id="Shop goods loose" value="Direct" />
</p></td>
<td><p>
<label for="Shop goods loose Direct to customers">Direct to customers</label>
</p></td>
</tr>
<tr>
<td><p>
<input type="checkbox" name="Shop goods loose" id="Shop goods loose" value="Shops" />
</p></td>
<td><p>
<label for="Shop goods loose through shops">Through shops</label>
</p></td>
</tr>
</table>
<p>
<input type="hidden" name="recipient" value="editor@fireworks-mag.org">
<input type="submit" name="Submit" id="Submit" value="Submit" />
</p>
</form>
