Posted by Alvaro G. Vicario on 10/11/71 11:38
*** opt_inf_env@yahoo.com escribió/wrote (29 Jan 2006 05:01:15 -0800):
> 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?
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
--
[Back to original message]
|