Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Submission Form?

    Hi, I am trying to create a submission form that, after hitting the "submit"
    button, is automatically sent to a specified e-mail address. I tried doing one
    in Flash but had no luck. Can anyone help?

    Thanks

    withhisstripes Guest

  2. Similar Questions and Discussions

    1. Submission Form
      Hey, At www.HookWeb.net/feedback.htm I am creating a submission form that forwards the information the surfer enters in the form. But I can only...
    2. Acccordion form submission
      My need is like this. I have 7-8 panels appearing as different tabs in the accordion. Each of the panel represents a complete form in itself. Since...
    3. multiple form submission
      Can someone point me in the direction of a resource to learn how to submit multiple forms on a single page through a single submit button. The...
    4. Form submission fills form values with garbage
      Hey all, I'm attempting to do some form processing on a server that has register_globals off, however, I've run into a confusing situation and...
    5. The woes of a PHP form submission
      Good evening to the skilled Ladies and Gentlemen of the PHP world. I am fairly new to all of this but learning quickly. I have run in to a need...
  3. #2

    Default Re: Submission Form?

    Here's a sample of the HTML. I got it from [url]www.w3schools.com/[/url]

    <form action="MAILTO:someone@w3schools.com" method="post" enctype="text/plain">
    Name:<br />
    <input type="text" name="name"
    value="yourname" size="20" />
    <br />
    Mail:<br />
    <input type="text" name="mail"
    value="yourmail" size="20" />
    <br />
    Comment:<br />
    <input type="text" name="comment"
    value="yourcomment" size="40" />
    <br /><br />
    <input type="submit" value="Send" />
    <input type="reset" value="Reset" />
    </form>


    san_diego_ca Guest

  4. #3

    Default Re: Submission Form?

    Thanks for the help, but I need it to do it without using a third party mailing program, I just want it to send it immediately after the person clicks the 'submit' button.
    withhisstripes Guest

  5. #4

    Default Re: Submission Form?

    Actually, I did a little research and found a perfect PHP form. Thanks everyone: [url]http://www.christian-web-masters.com/articles/web_php-mail-form-2.html[/url]
    withhisstripes Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139