Re: [PHP] update two frames at once?

2001-03-20 Thread Kathleen A. Ferraro
Jeanne, Your script example looks very promising. I have spent two solid days trying to solve this problem. I think what you have provided will be a big help. I am having trouble getting the navigation frame to update, though. I'm not sure what I'm missing. Do you have a working example?

RE: [PHP] update two frames at once?

2001-03-18 Thread Maron Kristófersson
I don't know if this is possible in PHP don't think so but you can do some very nifty things using JavaScript. Let's say you got two frames named links and main. Then you can for example do something like this in a page called contacts.php in the main frame body class="main"

Re: [PHP] update two frames at once?

2001-03-14 Thread Jens Nedal
Yes you can and there is even a neater script that does it. with thise you can update any amount of frames a t the same time. Just well i got to find it. msg back in a few. Jens Nedal on 12.03.2001 22:15 Uhr, Angerer, Chad at [EMAIL PROTECTED] wrote: Yes you can.. use Javascript Look

Re: [PHP] update two frames at once?-Revised

2001-03-14 Thread Jeanne Pelletier
vars; } - Original Message - From: "Jeanne Pelletier" [EMAIL PROTECTED] To: "Jens Nedal" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, March 14, 2001 12:58 PM Subject: Re: [PHP] update two frames at once? Here's what works for me-- You might adapt this

Re: [PHP] update two frames at once?

2001-03-13 Thread Paul
This may work, but it defeats the purpose of frames, which is to reduce reloading time. You would need to point to the frameset page, and have variables passed into each frame: html head title(your title)/title /head frameset rows="45%,55%" frameborder="NO" border="0" framespacing="0" cols="*"

Re: [PHP] update two frames at once?

2001-03-12 Thread Tanya Brethour
I dont believe so. -Tanya On Mon, 12 Mar 2001, Michael George wrote: Hello al! Is it possible to have two frames updated when cliking on one link? I have a page that is broken into 4 parts: master title section title d section screen i r . what I want is that

RE: [PHP] update two frames at once?

2001-03-12 Thread Angerer, Chad
Yes you can.. use Javascript Look here.. http://www.virtualgeoff.com/junkyard/frames/multiple/ Chad -Original Message- From: Michael George [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 3:06 PM To: [EMAIL PROTECTED] Subject: [PHP] update two frames at once? Hello al! Is it

RE: [PHP] update two frames at once?

2001-03-12 Thread Tanya Brethour
Well in straight/plain html frames.. I dont believe you can. -Tanya On Mon, 12 Mar 2001, Angerer, Chad wrote: Yes you can.. use Javascript Look here.. http://www.virtualgeoff.com/junkyard/frames/multiple/ Chad -Original Message- From: Michael George [mailto:[EMAIL

RE: [PHP] update two frames at once?

2001-03-12 Thread Angerer, Chad
, 2001 3:21 PM To: Angerer, Chad Cc: 'Michael George'; [EMAIL PROTECTED] Subject: RE: [PHP] update two frames at once? Well in straight/plain html frames.. I dont believe you can. -Tanya On Mon, 12 Mar 2001, Angerer, Chad wrote: Yes you can.. use Javascript Look here.. http

Re: [PHP] update two frames at once?

2001-03-12 Thread Rene Maldonado
Hi I had the same problem, and I did not find an answer this way, the only way is with javascript . Rene Michael George wrote: Hello al! Is it possible to have two frames updated when cliking on one link? I have a page that is broken into 4 parts: master title section

Re: [PHP] update two frames at once?

2001-03-12 Thread Stephan Ahonen
In the index page (change cols amounts to suit your layout): html frameset cols="50%,50%" frame src="menu.html" name="menu" frame src="section.html name="section" /frameset /html Put the menu in menu.html (duh), but here come the fun part. In section.html: html frameset rows="50%,50%" frame

RE: [PHP] update two frames at once?

2001-03-12 Thread Jon Snell
: [PHP] update two frames at once? Hi I had the same problem, and I did not find an answer this way, the only way is with javascript . Rene Michael George wrote: Hello al! Is it possible to have two frames updated when cliking on one link? I have a page that is broken into 4 parts