Generic form script?

Ask a Question related to Adobe Acrobat Macintosh, Design and Development.

  1. #1

    Default Generic form script?

    Is there someplace that I can download a generic CGI script that I can use to process forms from PDF? Here's what I need:

    1- a generic script that I can edit to fit the purpose of the moment
    2- something I can drop on anyone's web site
    3- something that will accept info from a PDF form on a CD (as FDF info) when the "submit" button is clicked
    4- sort out the FDF info and generate an e-mail to a mailbox that's part of the same website where the script is (i.e., I do a CD for Widget Inc that sends FDF data to a script on Widget Inc's web site on an ISP server and generates an e-mail with the information from the form to [email]sales@widgetinc.com[/email]).

    The point being- I don't want to do a custom script every time I produce a CD. I would like to have a single script that I can modify according to the form fields and the destination of the e-mail. I'd like to be able to just drop it into the root directory of the website and have it process forms coming from the PDF on a CD.

    Simple, no?
    Eric_Otto@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Mx 2004 form to ASP + VB Script
      Hello I'll start an aplication based ond flash that must interact with a database. I only have Flash MX 2004 with remoting actionscript...
    2. form upload images using php form script
      Hi, I normally use CGI to process my html forms. However, this time I need/want to use PHP. Can anyone point me in the direction of a php...
    3. Printing of form script
      I'm looking voor a script to print the results of a form. The printed result must be formed like a letter with result within the sentences, not just...
    4. Form Script Question
      Hi Can anyone tell me why my form script fails at this line <form action="$_SERVER" method="POST"> when running on my ISP which is using PHP...
    5. Form to Email Script Help!
      I am requesting values from a form including a multiple select menu then sending the values via email using the mail() function. $body =...
  3. #2

    Default Re: Generic form script?

    >1- a generic script that I can edit to fit the purpose of the moment

    There are an almost unlimited number of things a web form might need
    to do...
    >2- something I can drop on anyone's web site
    Most web sites don't allow scripting at all. Of those that does, there
    is no universal standard that is both allowed, and works. Some sites
    require CGI. Some require ASP. Some might require still other
    things...
    >3- something that will accept info from a PDF form on a CD (as FDF info) when the "submit" button is clicked
    >4- sort out the FDF info and generate an e-mail to a mailbox that's part of the same website where the script is (i.e., I do a CD for Widget Inc that sends FDF data to a script on Widget Inc's
    >web site on an ISP server and generates an e-mail with the information from the form to [email]sales@widgetinc.com[/email]).
    Now that's reasonably feasible, within the limitations above. Bear in
    mind though that, just as the programming method isn't universal, so
    is the method for sending e-mail not universal. Unix systems often
    offer sendmail. NT systems will frequently have CDONTS. Goodness knows
    what a Mac server might have. So, you do need a programmer that
    understands the specifics of the site for which they are programming.
    >The point being- I don't want to do a custom script every time I produce a CD.
    If you can dictate the ISP for the site, you may be able to have one
    script you can adapt easily.
    >I would like to have a single script that I can modify according to the form fields and the destination of the e-mail.
    Commonly, things like destination e-mail aren't stored in the script
    at all, but in the form (as a hidden field). This allows much more
    generic scripting (within the limitations above).
    >I'd like to be able to just drop it into the root directory of the website and have it process forms coming from the PDF on a CD.
    You need to study site administration a little more, I suspect. (Maybe
    you have, but for a narrow range of types of site). Almost no web
    sites would allow scripts in the root directory. Most have a
    site-specific directory, though some have a naming convention instead.

    Aandi Inston
    Aandi_Inston@adobeforums.com 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