Acrobat Form Submit error: changes VALUE="true" to "0"

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

  1. #1

    Default Acrobat Form Submit error: changes VALUE="true" to "0"

    I wrote an HTML page with a form.
    In the form I had many inputs as in:
    <INPUT TYPE="radio" NAME="Q1" VALUE="true"> and
    <INPUT TYPE="radio" NAME="Q1" VALUE="false">
    (among other inputs).
    I used Mac Adobe Acrobat Professional 6.0.0 to convert this page to PDF.
    I was able to have some people fill out this form in the PDF file and submit
    the data (as HTML) to the script on my website.
    Most people's submissions worked correctly, e.g.
    ....Q1=true&Q2=false&Q3=true...
    Oddly, when one person submitted the form, all the VALUE="true" and VALUE="false"
    were replaced by 0 and 1 (respectively), as in:
    ....Q1=0&Q2=1&Q3=0...
    Makes sense (0=true, 1=false in most computer languages). :)
    Needless to say this throws off my entire data processing automation scheme.

    Does anyone have any ideas why Acrobat is changing my HTML FORM VALUES
    behind my back?
    Is this a known bug? Should I have known better than to use VALUE="true" and "false"?
    Seems like this shouldn't be the first time people use those VALUEs.

    (This is a medical survey and due to privacy constraints,
    I can't get any additional info about the client other than
    it was Windows XP and Internet Explorer on a computer about a month old.
    So I don't know which Acrobat Reader version it was running, if it was a plug-in, etc.)

    Thanks for any help.
    Douglas Maus
    Douglas_Maus@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Reason for Error "No form is open in Acrobat Viewer"
      Am trying to use the AcroForms plug-in using IAC in VC++ to populate fields by opening PDFs in memory. The method PDDoc->OpenAVDoc is bringing the...
    2. #39195 [Opn->Bgs]: if (0=="any sting") echo "it's return true";
      ID: 39195 Updated by: derick@php.net Reported By: waynewn at citiz dot net -Status: Open +Status: ...
    3. #39195 [NEW]: if (0=="any sting") echo "it's return true";
      From: waynewn at citiz dot net Operating system: win/freebsd PHP version: 5.1.6 PHP Bug Type: Scripting Engine problem Bug...
    4. Distiller 5 created PDF showed broken "I" &"L" when viewed in Acrobat 6
      Distiller 5 on Mac OS 9. Acrobat 6 Pro on Mac OS X .3.4 I often receive PDF files (ver 1.3) from clients and used to view the files from Acrobat...
    5. #25366 [NEW]: form buttons of type "image" dont send "submit" $_POST variable in IE
      From: jordanolsommer at imap dot cc Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: Variables related Bug...
  3. #2

    Default Re: Acrobat Form Submit error: changes VALUE="true" to "0"



    Should I have known better than to use VALUE="true" and "false"?




    I don't know, but it seems clear that the easiest way to prevent this is to use different values.

    George
    George_Johnson@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