home *** CD-ROM | disk | FTP | other *** search
/ The Elite Hackers Toolkit / TheEliteHackersToolkitVolume1_1998.rar / HACKERS.BIN / appcraks / FORMRETU.ZIP / HTMLCGI.TXT < prev   
Text File  |  1990-01-01  |  3KB  |  68 lines

  1. ###################################################################### 
  2. #
  3. #     Dream Catchers CGI Scripts               Feel free to modify 
  4. #     Form Return 4.0                          this script to your 
  5. #     Created by Seth Leonard                  needs, but please
  6. #     for Dream Catchers Technologies, Inc.    keep this portion so
  7. #                                              that I get credit.  
  8. #     http://dreamcatchersweb.com/scripts      The same goes for 
  9. #                                              distribution.
  10. #
  11. #     (c)1996 Dream Catchers Web Services, All Rights Reserved
  12. #
  13. ######################################################################
  14.  
  15. HTML Commands for Form Fill-Ins
  16.  
  17. *If you would simply like a line fill in:
  18.  
  19. In all of the following examples the word "Category" can be replaced by any word that you would like to describe this input.  If you change it to "name" and someone fills in "Bill Gates" your email response will look like "name: Bill Gates".
  20.  
  21. <P>CATEGORY: <INPUT TYPE ="text" NAME="Category" SIZE="40"></P>
  22.  
  23. CATEGORY is the word or words that you would like to appear next to the fill-in box.
  24.  
  25. 40 can be any size, it is the number of characters long that you you would like the box to be.
  26.  
  27. *If you would like a box fill in:
  28.  
  29. <P>CATEGORY<TEXTAREA NAME="Category" ROWS=4 COLS=40></TEXTAREA></P>
  30.  
  31. CATEGORY is the word or words that you would like to appear next to the fill-in box.
  32.  
  33. The ROWS and COLS values can be changed to make whatever size box you want.
  34.  
  35. *If you would like a choice, using circles, for example:
  36.  
  37. ( ) Choice 1
  38. ( ) Choice 2
  39.  
  40. And visitors click in the circle of the one they choose:
  41.  
  42. <P><INPUT TYPE="radio" NAME="Category" VALUE="Choice1">Choice1</P>
  43. <P><INPUT TYPE="radio" NAME="Category" VALUE="Choice2">Choice2</P>
  44.  
  45. Choice is the name of the value you would like to appear in your email in response to the category.
  46. CHOICE is the word or words that you would like to appear next to the fill-in box.
  47.  
  48. *If you would like a check box, for example:
  49.  
  50. [ ] Check if you want a response
  51. And visitors click the box and it is filled in:
  52.  
  53. <P><INPUT TYPE="Checkbox" NAME="Category" VALUE="Box">BOX</P>
  54.  
  55. Box is the name of the value you would like to appear in your email in response to the category.
  56. BOX is the word or words that you would like to appear next to the fill-in box.
  57. If you would like the box to be checked use this:
  58.  
  59. <P><INPUT TYPE="Checkbox" NAME="Category" VALUE="Box" CHECKED="checked">BOX</P>
  60.  
  61. *You must have a "submit" button to send the info to your email:
  62.  
  63. <P><INPUT TYPE="Submit" VALUE="SUBMIT"></P>
  64.  
  65. SUBMIT is the word or words that you would like to appear in the button that when pressed, sends the info.
  66.  
  67. There are more fill-in commands and a great HTML editor called Webber has all the commands and is available for download at http://www.csdcorp.com/.
  68.