Hidden HTML elements not posting

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike Discenza

    Hidden HTML elements not posting

    New install of 4.3.3 and apache 1.3.27 as the web server. The install
    went fine, no major hickups or anything like that. But now, I'm
    finding some oddness. A form in a new app I'm working on has some
    hidden input fields (<input type=hidden...> ). For some reason these
    are not getting posted. I verified this by sticking the following
    block at the top of the page before any other processing is done:

    while(list($key ,$value) = each ($HTTP_POST_VAR S))
    {echo "$key = $value<br>\n";}

    I get back every other field except the hidden one's.

    Any good reason for this to be happening? I didn't see anything in
    the ini file that would cause this.
  • Tom Thackrey

    #2
    Re: Hidden HTML elements not posting


    On 27-Oct-2003, mike.discenza@d illards.com (Mike Discenza) wrote:
    [color=blue]
    > New install of 4.3.3 and apache 1.3.27 as the web server. The install
    > went fine, no major hickups or anything like that. But now, I'm
    > finding some oddness. A form in a new app I'm working on has some
    > hidden input fields (<input type=hidden...> ). For some reason these
    > are not getting posted. I verified this by sticking the following
    > block at the top of the page before any other processing is done:
    >
    > while(list($key ,$value) = each ($HTTP_POST_VAR S))
    > {echo "$key = $value<br>\n";}
    >
    > I get back every other field except the hidden one's.
    >
    > Any good reason for this to be happening? I didn't see anything in
    > the ini file that would cause this.[/color]

    are you sure the hidden fields have names and values and are inside the
    <form...> </form> tags?

    --
    Tom Thackrey

    tom (at) creative (dash) light (dot) com
    do NOT send email to jamesbutler@wil lglen.net (it's reserved for spammers)

    Comment

    Working...