RE: [PHP] passing variables from - to frames

2001-06-27 Thread Taylor, Stewart
] passing variables from - to frames > Hello, sorry this question here (it is not true PHP question), but I use > some variables into PHP scripts and need > pass these variables from one frame to another. > > I want pass variable values between frames, these definded via input > hid

Re: [PHP] passing variables from - to frames

2001-06-27 Thread elias
Hey sorry 'M' about my last post... I was giving you ideas mixed with how to access an IFRAME ;) anyway to access frames you have to do like: window.parent.framea.window.document.forma.texta.value = window.parent.frameb.window.document.formb.textb.value "M" <[EMAIL PROTECTED]> wrote in message

Re: [PHP] passing variables from - to frames

2001-06-27 Thread Richard Lynch
framea and frameb don't know about each other, but their document and their window should know both of them. So, you can use document.framea... and document.frameb... to access each other's variables. Also, if these variables are coming from PHP, and if you are using FRAMEs mostly for looks, and

Re: [PHP] passing variables from - to frames

2001-06-26 Thread Greg Donald
> Hello, sorry this question here (it is not true PHP question), but I use > some variables into PHP scripts and need > pass these variables from one frame to another. > > I want pass variable values between frames, these definded via input > hidden tags into form definition. > I have first frame

Re: [PHP] passing variables from - to frames

2001-06-26 Thread elias
I think it works just fine, maybe you can try: framea.document.forma.vala.value = frameb.document.formb.valb.value if this didn't work then change to: framea.window.document.forma.vala.value = It worked with me time ago... "M" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:

[PHP] passing variables from - to frames

2001-06-26 Thread M
Hello, sorry this question here (it is not true PHP question), but I use some variables into PHP scripts and need pass these variables from one frame to another. I want pass variable values between frames, these definded via input hidden tags into form definition. I have first frame name=framea c