Click to See Complete Forum and Search --> : Sending information
superkat
Jan 20th, 2003, 11:25 AM
Im kind of new to this, but what I am trying to do is make a page with 2 textboxes, and when someone files them in and hits submit it emails the content of the textboxes to a email address.
Any help would be greatly appreciated. :)
-Thanks ;)
Rick Bull
Jan 21st, 2003, 04:36 AM
Have you got a server-side scripting language like PHP or Perl, or do you want to use plain HTML (not a very good method)? Here's how to do it in HTML:
<form action="mailto:me@my_address.com" method="get"><p>
<label for="Name">Name:</label> <input id="Name" name="Name" /><br />
<label for="Subject">Subject:</label> <input id="Subject" name="Subject" /><br />
<label for="Message">Message:</label> <textarea cols="20" rows="10" id="Message" name="Message"></textarea><br />
<input type="submit" /><input type="reset" />
</p></form>
But it will have problems in browsers like AOL.:(
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.