mkolom
12-27-2006, 01:12 PM
Hello -
I am a business owner who just transferred my site to bluehost. There is a simple php email form on the site, but it is calling a routine from the horrible web dev company that developed the site. I need to get the php working so I can get rid of them. I activated the .net domain for a dev env on bluehost. The form and code are there it just need to be tweaked to work on BH. The site is www.advancedlaserchicago.net and below is the php code. I'll pay a flat fee or hourly rate. Please email me at mkolom@axisconsultinggroup.com if interested. Thanks!
<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 a business owner who just transferred my site to bluehost. There is a simple php email form on the site, but it is calling a routine from the horrible web dev company that developed the site. I need to get the php working so I can get rid of them. I activated the .net domain for a dev env on bluehost. The form and code are there it just need to be tweaked to work on BH. The site is www.advancedlaserchicago.net and below is the php code. I'll pay a flat fee or hourly rate. Please email me at mkolom@axisconsultinggroup.com if interested. Thanks!
<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>