Results 1 to 2 of 2

Thread: Sending information

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2001
    Posts
    55

    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

  2. #2
    Frenzied Member Rick Bull's Avatar
    Join Date
    Apr 2002
    Location
    England
    Posts
    1,444
    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
  •  



Click Here to Expand Forum to Full Width