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!

how do i pass hidden within a frame page?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
hello..

i have a frameset page that contains hidden data, does anybody know how i can distribute this data to the pages contained in the frameset????

cheers
FYL
 
by javascript

try this

window.framename.formname.hiddenname.value

to get the values of the hidden fields. Anikin
Hugo Alexandre Dias
Web-Programmer
anikin_jedi@hotmail.com
 
Hi all,

is there a way to get the value of a hidden field as soon as the the form is submitted. The current state is that the value is only visible when I press the submit button a second time.

Here is the snippet:

if( ...something)
{
print&quot;<input type=\&quot;hidden&quot; name=\&quot;path_a\value=$path_a>&quot;;
}

echo $path;

Olli
 
in the PHP it goes in the $_POST or $_GET array (deppend on the method)

in JS you can access the value as simple as formname.hiddenfield.value.

If is not this what you want, you must explain better.
Anikin
Hugo Alexandre Dias
Web-Programmer
anikin_jedi@hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top