Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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. ...
    2. 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 ...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default Re: header question

    Peter wrote:
    > I want to use header("Location:........") but i want to open it in a
    > blank page.
    > How do i do that?
    >
    You can't, because the opening of a new page is a client-side decision and
    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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139