Click to See Complete Forum and Search --> : Send Forms
ugaik
09-01-2003, 02:01 AM
I set up a html document which uses radiobuttons and text fields. I would like to send this document to other users allowing them to click radio buttons and to enter text into the text fields and then send it back to me including the changes (radio buttons, text, etc.).
Does anybody know an appropriate (and simple to handle) solution for the sending function?
Your kind help is hoghly appreciated!!
Thanks in advance!
Sux0rZh@jc0rz
09-01-2003, 04:22 AM
Put your form inside the <form..../form> tags then try it out.
<form action="MAILTO:youremail@here.com" method="post" enctype="text/plain">
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
ugaik
09-01-2003, 04:37 AM
Originally posted by Sux0rZh@jc0rz
Put your form inside the <form..../form> tags then try it out.
<form action="MAILTO:youremail@here.com" method="post" enctype="text/plain">
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
ugaik
09-01-2003, 04:39 AM
Originally posted by Sux0rZh@jc0rz
Put your form inside the <form..../form> tags then try it out.
<form action="MAILTO:youremail@here.com" method="post" enctype="text/plain">
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
sorry, but it doesn't work. Thist command simply opens my mail program using the "mailto" address. It does not send the (edited) form