[PHP] header() question

2002-04-01 Thread Patrick Hartnett
Is it possible to user the target="_top" reference when using a header("Location = ...")? If so, anyone have an example. Thanks -patrick _ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com --

[PHP] Header question

2002-04-28 Thread Dean Ouellette
I have a tell a friend script and got the php script from a friend to make it work. I am a newbie so still do not fully udners stand it. Here is the problem, it puts the following at the top of each e-mail: X-Mailer: PHP/4.1.2 Here is the script:

Re: [PHP] header() question

2002-04-01 Thread George Nicolae
The _top option send you to the top of a page. When you open a new location you go on top by default.Maybe you ask about _blank? I don't have the answer for this last question. -- Best regards, George Nicolae IT Manager ___ PaginiWeb.com - Professional Web Design www.PaginiWeb.

Re: [PHP] header() question

2002-04-01 Thread Patrick Hartnett
gt;From: "George Nicolae" <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: [PHP] header() question >Date: Mon, 1 Apr 2002 21:11:00 +0300 > >The _top option send you to the top of a page. When you open a new location >you go on top by default.Maybe you ask abo

Re: [PHP] header() question

2002-04-01 Thread Erik Price
On Monday, April 1, 2002, at 01:49 PM, Patrick Hartnett wrote: > So any use of header("Location=...") automatically does what amounts to > a target="_top"? If so, then ignore this entire post, cuz that answers > the question. If not, does anyone know how to force a target="_top" > when usi

Re: [PHP] header() question

2002-04-01 Thread martinahingis
I think the question is not the top of the page, the top frame of the window. Isn't it? If so you should use Javascript instead of PHP. top.window.location.href=http://yoursite.com/yourpage.php; --- martina. "Erik Price" <[EMAIL PROTECTE

Re: [PHP] header() question

2002-04-01 Thread Erik Price
On Monday, April 1, 2002, at 03:47 PM, martinahingis wrote: > I think the question is not the top of the page, the top frame of the > window. Isn't it? Oh yeah, you're right. I was thinking along the lines of what that other guy suggested -- that all pages revert to _top by default (which n