Connecting Tech Pros Worldwide Help | Site Map

Form variables in the address line.

opt_inf_env@yahoo.com
Guest
 
Posts: n/a
#1: Jan 29 '06
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
Guest
 
Posts: n/a
#2: Jan 29 '06

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.

Alvaro G. Vicario
Guest
 
Posts: n/a
#3: Jan 29 '06

re: Form variables in the address line.


*** opt_inf_env@yahoo.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
--
Closed Thread