mkolom
12-22-2006, 06:18 AM
Hello -
I am in the process of transfering my site from another host (they are miserable):mad: to BH. Everything works OK except for my quick email form which is PHP. I am no web programmer by any means, but can read the html code with some understanding. Below is the current code, what do I need to change/ configure with BH to get this to work. Thanks in advance from a rookie.
<form name="formmailer" action="http://cherryone.com/php/formmail.php" method="POST">
<input type="hidden" name="subject" value="Advanced Laser Information Quick Form Response">
<input type="hidden" name="recipient" value="info@advancedlaserchicago.com">
<input type="hidden" name="redirect" value="http://www.advancedlaserchicago.com/confirmation.html">
<input type="hidden" name="required" value="Name,email">
<tr>
<td colspan="2"><p align="center" class="subheader_01"><strong>Have a question? <br>
Contact Us:</strong><a href="mailto:info@advancedlaserchicago.com"><br>
<br>
</a></p></td>
</tr>
<tr>
<td width="68">Name</td>
<td width="179"><input name="Name" type="text" class="body" value="" size="20"></td>
</tr>
<tr>
<td>E-Mail</td>
<td><input name="email" type="text" class="body" value="" size="20"></td>
</tr>
<tr>
<td>Phone</td>
<td><input name="phone" type="text" class="body" value="" size="20"></td>
</tr>
<tr>
<td>Comments</td>
<td><textarea name="comments" cols="18" rows="5" class="body"></textarea></td>
</tr>
<tr>
<td> </td>
<td><p>
<input name="submit" type="submit" class="body" value="Submit">
</p></td>
</tr>
</form>
I am in the process of transfering my site from another host (they are miserable):mad: to BH. Everything works OK except for my quick email form which is PHP. I am no web programmer by any means, but can read the html code with some understanding. Below is the current code, what do I need to change/ configure with BH to get this to work. Thanks in advance from a rookie.
<form name="formmailer" action="http://cherryone.com/php/formmail.php" method="POST">
<input type="hidden" name="subject" value="Advanced Laser Information Quick Form Response">
<input type="hidden" name="recipient" value="info@advancedlaserchicago.com">
<input type="hidden" name="redirect" value="http://www.advancedlaserchicago.com/confirmation.html">
<input type="hidden" name="required" value="Name,email">
<tr>
<td colspan="2"><p align="center" class="subheader_01"><strong>Have a question? <br>
Contact Us:</strong><a href="mailto:info@advancedlaserchicago.com"><br>
<br>
</a></p></td>
</tr>
<tr>
<td width="68">Name</td>
<td width="179"><input name="Name" type="text" class="body" value="" size="20"></td>
</tr>
<tr>
<td>E-Mail</td>
<td><input name="email" type="text" class="body" value="" size="20"></td>
</tr>
<tr>
<td>Phone</td>
<td><input name="phone" type="text" class="body" value="" size="20"></td>
</tr>
<tr>
<td>Comments</td>
<td><textarea name="comments" cols="18" rows="5" class="body"></textarea></td>
</tr>
<tr>
<td> </td>
<td><p>
<input name="submit" type="submit" class="body" value="Submit">
</p></td>
</tr>
</form>