Directing server php return page

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Don

    Directing server php return page

    How do I have the server-side php script open up a new client window, rather than having it return
    to the client page that invoked the php script in the first place? I want to preserve the original
    client page. Or if I could do it, better yet, is there a way to have the php script return to the
    same window, but a new page, thereby preserving the original client page?

    Thanks for your help,
    Don


    ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
    http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
    ---= East/West-Coast Server Farms - Total Privacy via Encryption =---
  • neur0maniak

    #2
    Re: Directing server php return page

    You can't open a new window from server-side.

    You would have to link to the page using the TARGET="_newwin dow" inside
    the <A HREF="...."> tag. The TARGET also works for FORM tags.

    If you wanted the page to open a new window once it had been loaded,
    you'd need to do some javascript.
    Such as <BODY onLoad="window. open('http://....','','');">




    Don wrote:[color=blue]
    > How do I have the server-side php script open up a new client window, rather than having it return
    > to the client page that invoked the php script in the first place? I want to preserve the original
    > client page. Or if I could do it, better yet, is there a way to have the php script return to the
    > same window, but a new page, thereby preserving the original client page?
    >
    > Thanks for your help,
    > Don
    >
    >
    > ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
    > http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
    > ---= East/West-Coast Server Farms - Total Privacy via Encryption =---[/color]

    Comment

    Working...