Connecting Tech Pros Worldwide Help | Site Map

Form variables in the address line.

  #1  
Old January 29th, 2006, 01:15 PM
opt_inf_env@yahoo.com
Guest
 
Posts: n/a
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?

  #2  
Old January 29th, 2006, 01:55 PM
opt_inf_env@yahoo.com
Guest
 
Posts: n/a

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.

  #3  
Old January 29th, 2006, 02:15 PM
Alvaro G. Vicario
Guest
 
Posts: n/a

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Form Data -> Variables or an Array? Cerebral Believer answers 4 September 26th, 2006 05:45 PM
Variables in standard modules, single record entry wiht foreign keys Ross A. Finlayson answers 5 November 13th, 2005 09:59 AM
Cannot use mail() in IE, only works in a debugger--help baustin75@gmail.com answers 8 October 5th, 2005 06:15 PM
curl: posting form variables results in redirection TJ Talluto answers 2 July 17th, 2005 10:25 AM