Form variables in the address line.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • opt_inf_env@yahoo.com

    #1

    Form variables in the address line.

    Hi,

    I have created a form with hidden variables and submit button which
    initiate downloading of a new page. After submit-button is pressed and
    new page is downloaded I can see values of all hidden variables in the
    address line of the browser. It is strange that another form does not
    produce this effect (variables in address line). I cannot find out
    which difference in forms originates different behavior. May be you
    have some ideas?

  • opt_inf_env@yahoo.com

    #2
    Re: Form variables in the address line.

    OK. It was stupid mistake. I could see variables values in the address
    line in cases when I did not put method="post" in the forms
    declaration.

    Comment

    • Alvaro G. Vicario

      #3
      Re: Form variables in the address line.

      *** opt_inf_env@yah oo.com escribió/wrote (29 Jan 2006 05:01:15 -0800):[color=blue]
      > I have created a form with hidden variables and submit button which
      > initiate downloading of a new page. After submit-button is pressed and
      > new page is downloaded I can see values of all hidden variables in the
      > address line of the browser. It is strange that another form does not
      > produce this effect (variables in address line). I cannot find out
      > which difference in forms originates different behavior. May be you
      > have some ideas?[/color]

      There're several methods to send data to a web server. Forms normally use
      GET or POST. In HTML you specify it with the 'method' attribute in 'form'
      tag. GET method implies using the URL to send the data while POST gets its
      data sent in the body of the request.

      Also, please note that the 'hidden' type only affects the way the field is
      rendered into the page (i.e., not displayed).


      --
      -+ Álvaro G. Vicario - Burgos, Spain
      ++ http://bits.demogracia.com es mi sitio para programadores web
      +- http://www.demogracia.com es mi web de humor libre de cloro
      --

      Comment

      Working...