Hi, Im going insane. Im new at all this and basically i a php code for my form to send it to my email and then redirect to a thank you page and if any fields are blank an error page .
heres my form code =
<form action=“form.php” method=“post”>
<table>
<tr>
<td>Name:</td><TD>
<input type=“text” name=“email_address” value="" maxlength=“100” />
</tr>
</td>
<tr>
<td>Phone number:</td><td>
<input type=“text” name=“email_address” value="" maxlength=“100” />
</td>
</tr>
<tr>
<td>Address:</td><br>
<td>
<textarea rows=“5” cols=“20” name=“comments”></textarea>
</td>
</tr>
<tr>
<td>Description:</td><br>
<td>
<textarea rows=“6” cols=“50” name=“comments”></textarea>
</td>
</tr>
<tr><td> </td>
<td>
<input type=“submit” value=“Submit” />
</td>
</tr>
</table>
</form>
<p></p>
</p>