Hi,
I have a contact form which is laid out like the following;
<form id="form1" name="form1" method="post" action="send.php">
<table width="362" border="0" align="center" class="tbltxt">
<tr>
<td height="30" colspan="2" style="color:#174AA8; text-decoration:underline;"><b>Send us a message!</b></td>
</tr>
<tr>
<td width="95" height="30"><label for="Name">Name</label></td>
<td width="257"height="30"><input name="Name" type="text" id="Name" style="width:200px;" /></td>
</tr>
<tr>
<td height="30"><label for="Subject">Subject</label></td>
<td height="30"><select name="Subject" id="Subject" style="width:200px;">
<option value="Technical issue">Technical issue</option>
<option value="Rates">Rates</option>
<option value="Other">Other</option>
</select></td>
</tr>
<tr>
<td height="30">Email address</td>
<td height="30"><input name="Email" type="text" id="Email" style="width:200px;" /></td>
</tr>
<tr>
<td valign="top">Message</td>
<td><label for="Message"></label>
<textarea name="Message" id="Message" rows="5" style="width:200px;"></textarea></td>
</tr>
<tr>
<td height="30"> </td>
<td height="30"><input type="submit" name="send" id="send" value="Send now" />
<input type="reset" name="Reset" id="button" value="Clear form" /></td>
</tr>
</table>
<p> </p>
</form>
After the user presses the 'Send now' button instead of it redirecting off to another page I want some text to appear below the table stating that the message has been sent.
Any ideas how I can achieve this?
Thanks :)