Ask a Question related to PHP Development, Design and Development.
-
Peter #1
header question
I want to use header("Location:........") but i want to open it in a blank
page.
How do i do that?
thanks in advance
--
Peter Naber
E: [email]peter@hostingu2.nl[/email]
W: [url]http://www.hostingu2.nl[/url]
Posted by [url]news://news.nb.nu[/url]
Peter Guest
-
Flex 1.5 Header Renderer styles question
I am having a great deal of trouble setting individual header properties in a DataGrid. I have tried multiple approaches with this to no avail. ... -
Table Header question
How can get header as below 1) On first page with table - header contains 3 rows 2) on next pages only third row from header must be included ... -
Question on HTTP_AUTHORIZATION header..
Hi, Is there any manner in which I can reset the HTTP_AUTHORIZATION header? Here's why I would like to reset it :- My application uses IIS's... -
header("Location:...") question
Stijn Goris wrote: A header is sent to the browser, so the login info will be visible in url of the redirected to page. Have a look into... -
Thoth question: personalities & From header
Personalities in the current Thoth 1.7.1 only change some of the headers and sig, but does not change the "From" header. Most of the time i am... -
Janwillem Borleffs #2
Re: header question
Peter wrote:
You can't, because the opening of a new page is a client-side decision and> I want to use header("Location:........") but i want to open it in a
> blank page.
> How do i do that?
>
not triggered by HTTP headers.
One way to do it is with javascript, e.g.:
window.onload = function () {
window.open("somepage.html");
}
JW
Janwillem Borleffs Guest



Reply With Quote

