I am totally desperate, have tried thousands of scripts and nothing works. I am not a web design genius, but am never afraid to try.
Please, I have a form (see script below) with 5 questions. The user has to fill in the spaces with the answers and Submit. I need this information to be sent to my email address without using the mailto (as this opens the mail provider, and it's messy). How can I get these answers in my e-mail address and then redirect to the same page, without the client seeing it was sent to an email address?
<form name="questions" id="questions" method="post" action="">
<p>1. Question 1</p>
<p>
<textarea name="textfield" cols="40"></textarea>
</p>
<p> </p>
<p>2. Question 2</p>
<p>
<textarea name="textfield" cols="40"></textarea>
</p>
<p> </p>
<p>3. Question 3</p>
<p>
<textarea name="textfield" cols="40"></textarea>
</p>
<p> </p>
<p>4. Question 4</p>
<p>
<textarea name="textfield" cols="40"></textarea>
</p>
<p> </p>
<p>5. Question 5</p>
<p>
<textarea name="textfield" cols="40"></textarea>
</p>
<p> </p>
<input name="Submit" type="submit" value="Submit"/>
</p>
</form>