Re: [PHP] header() and frameset

2002-02-01 Thread Richard Crawford
Clarification: this will only work if you put the script inside the page that the header() command points to. If you put the header() command in the same document with this script, then the header() command won't work, since you'll be sending output to the browser. Here's a thought. Use the hea

Re: [PHP] header() and frameset

2002-02-01 Thread rpruitt
Anywhere in the of the page you're gonna bust out, place this small code -- if (parent.frames.length > 0) { parent.location.href = self.document.location } Benjamin deRuyter wrote: > Does anybody know of a way to break out of a frameset whil

[PHP] header() and frameset

2002-02-01 Thread Benjamin deRuyter
Does anybody know of a way to break out of a frameset while using the following code to redirect the browser: header("Location: http://www.anywhere.com/";); exit(); Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m