longshot
01-14-2008, 10:10 AM
im a newbie at this one and through all the research i have done i still can't seem to get it right. Im hoping someone out there can help.:confused:
i need to convert an HTML for to php and have it submit to an e-mail address. I am able to create the html form but thats where my knowledge ends. below is the HTML form
<table width="384" border="0" cellpadding="2" cellspacing="0" bordercolor="#E6E6E6" id="contact form">
<tr>
<td><div align="right" class="style14">
<div align="left"><span class="style15">NAME</span></div>
</div></td>
<td><label>
<input name="name" type="text" class="style13" size="35" id="name">
</label></td>
</tr>
<tr>
<td class="style2">E-MAIL ADDRESS</td>
<td><input name="email" type="text" class="style13" size="35" id="email"></td>
</tr>
<tr>
<td><div align="right" class="style14">
<div align="left" class="style15">ADDRESS</div>
</div></td>
<td><label>
<input name="street address" type="text" class="style13" size="35" id="street address">
</label></td>
</tr>
<tr>
<td class="style2">PHONE</td>
<td valign="middle"><label>
<input name="phone" type="text" class="style13" size="35" id="phone">
</label></td>
</tr>
<tr>
<td class="style2"> </td>
<td><label>
<textarea name="job description" cols="36" rows="4" class="lineheight" id="job description">Briefly describe job</textarea>
</label></td>
</tr>
<tr>
<td> </td>
<td><textarea name="how did you hear about us" cols="36" rows="2" class="lineheight" id="how did you hear about us">How did you hear about us?</textarea></td>
</tr>
<tr>
<td width="96"> </td>
<td width="280"><label>
<input name="reset" type="reset" class="style16" value="RESET" id="reset">
<input name="Submit" type="submit" class="style16" value="SUBMIT">
<input type="hidden" name="hiddenField">
</label></td>
</tr>
</table>
i need to convert an HTML for to php and have it submit to an e-mail address. I am able to create the html form but thats where my knowledge ends. below is the HTML form
<table width="384" border="0" cellpadding="2" cellspacing="0" bordercolor="#E6E6E6" id="contact form">
<tr>
<td><div align="right" class="style14">
<div align="left"><span class="style15">NAME</span></div>
</div></td>
<td><label>
<input name="name" type="text" class="style13" size="35" id="name">
</label></td>
</tr>
<tr>
<td class="style2">E-MAIL ADDRESS</td>
<td><input name="email" type="text" class="style13" size="35" id="email"></td>
</tr>
<tr>
<td><div align="right" class="style14">
<div align="left" class="style15">ADDRESS</div>
</div></td>
<td><label>
<input name="street address" type="text" class="style13" size="35" id="street address">
</label></td>
</tr>
<tr>
<td class="style2">PHONE</td>
<td valign="middle"><label>
<input name="phone" type="text" class="style13" size="35" id="phone">
</label></td>
</tr>
<tr>
<td class="style2"> </td>
<td><label>
<textarea name="job description" cols="36" rows="4" class="lineheight" id="job description">Briefly describe job</textarea>
</label></td>
</tr>
<tr>
<td> </td>
<td><textarea name="how did you hear about us" cols="36" rows="2" class="lineheight" id="how did you hear about us">How did you hear about us?</textarea></td>
</tr>
<tr>
<td width="96"> </td>
<td width="280"><label>
<input name="reset" type="reset" class="style16" value="RESET" id="reset">
<input name="Submit" type="submit" class="style16" value="SUBMIT">
<input type="hidden" name="hiddenField">
</label></td>
</tr>
</table>