Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing a variable to other pages..

Status
Not open for further replies.

fergman

Technical User
Oct 19, 2000
91
US
I'm trying to pass a variable to another page.
currently I'ev got a login/password on the first page, it passes via htmlencode, but how do I pass just the variable without using a text field?
 
you can use a "hidden" field:

<input type = &quot;hidden&quot; name =&quot;invisible_value_passer&quot; value =&quot;<% variable %>&quot;>

then in the second page, just request the value in.
hth
mb
:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top