> Is it possible to target a frame in the Location: of
> a header? Sorry if this has been brought up a
> million times before.

No.

You *can* pass enough information to the FRAMESET page that it will load the
right content for each sub-FRAME.

http://yoursite.com/main.php?nav=a.php&top=b.php&content=c.php

---- main.php ---------------------------
<FRAMESET ...>
    <FRAME SRC=<?php echo $nav;?> ...>
    <FRAME SRC=<?php echo $top;?> ...>
    <FRAME SRC=<?php echo $content;?> ...>
</FRAMESET>

In essence, you are "losing" the feature of frames that lets only one change
on a given HTTP interchange, but you still have frames (God knows why you
want them) and each FRAME gets the right content in it...

--
Visit the Zend Store at http://www.zend.com/store/
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to