I have this contact form:
<form class="contactform" action="contact.php" method="post">
<table>
<tr><td>Name</td></tr>
<tr><td><input type="text" name="name"></td></tr>
<tr><td>Phonenumber(optional)</td></tr>
<tr><td><input type="text" name="telephone"></td></tr>
<tr><td>E-mail</td></tr>
<tr><td><input type="text" name="email"></td></tr>
<tr><td>Your question or comment</td></tr>
<tr><td><textarea name="comment"></textarea></td></tr>
</table>
<input type='submit' name='sending' value='Submit'>
</form>
And when the user clicks submit, it goes to a php script which sends the contact form details to me, which happends at action="contact.php"
But I would like a separated html page, a "thanks for you question" page. How would I execute 2 files, via action
or otherwise.
Thanks.