|
-
Jan 20th, 2003, 12:25 PM
#1
Thread Starter
Member
Sending information
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

- Sk
-
Jan 21st, 2003, 05:36 AM
#2
Frenzied Member
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:
Code:
<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.
Last edited by Rick Bull; Jan 21st, 2003 at 05:42 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|