Adding Forms that EMail you the responses!

Get personal EMail from
Forms in your WEB PAGE.


Sample of some form items
Text entry field here:

Checked Box.

Press button for sample: To clear press button:


Here's how to do it.
    It's not that hard to put Forms with EMail responses in your own Web Page.
  1. First get your page working without the EMail response, just a form.
  2. Reference NCSA's fill-out-form Web Pages for more help.
  3. Add in:
    <input type="hidden" name="Action" value="Test">
    somewhere between <FORM...> and the </FORM>statements.
  4. Use a <form method="POST" action="/cgi-bin/mailit"> to test form action.
  5. Upload it ASCII MODE to your personal public_html directory.
  6. Test it, making sure all the entries apear as you like.
  7. Fill out the form and click on submit, verify output looks like you want.
  8. After it all works like you want, add the following:
  9. You may also add in the following lines to specify the next page.
    <input type="hidden" name="Next" value="NEXT PAGE">
  10. Make sure:

File Output instead of EMail

  1. Get your page working using the above examples.
  2. Delete the line:
    <input type="hidden" name="UserName" value="EMail Address">
    If you don't want EMail, just the file.
  3. Add <input type="hidden" name="Path" value="/PATH/YOUFILENAME">
  4. Make a blank file at PATH and make it world writable.
  5. Test it and see if it works.
  6. The file is standard ascii delimited.
    ("value1","Value2","Value3")

You can get EMail and/or File Output and/or Web Page Output. Any or all.
Sorta, if you use 'Test', 'Next' does not goto, it just shows the location.

    Here are several examples from NCSA, slightly modified for your eyes only.
  1. Example 1 Very simple text fill-out form.
  2. Example 2 Multiple text entry fields.
  3. Example 3 Multiple text entry fields and checkboxes.
  4. Example 4 With default entries.
  5. Example 5 Various text entry field attributes.
  6. Example 6 Multiple independent Fill-out Forms.
  7. Example 7 Radio buttons plus...
  8. Example 8 Password and Text Box.
  9. Example 9 Option Tags.
  10. Example 10 Single and Multiple Selector boxes.
  11. Example 11 Text Area Elements
  12. Example 12 With Image Elements
  13. Example 13 With Hidden Elements
  14. Example 14 Multiple Submit Buttons.

This page has been accessed times.
Best experienced with

Click here to start.