Ask a Question related to PHP Development, Design and Development.
-
Don #1
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==----
[url]http://www.newsfeeds.com[/url] The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Don Guest
-
Re-directing a page to a different address based on acriteria
Hello All, I created an update page that once the user made the necessary changes and click the update button that record would drop-off from the... -
Directing Domains
Hi, I have never used ASP in my life so I NEED HELP!!! I have heard it is possible to create an asp script that when someone connects to a web... -
Home page return
I have my web page uploaded from 2002. I have two problems. #1. I have 6 pages and it works OK until I try and return to the home page with the... -
Re-directing outsiders to a universal URL
What code is to be placed in a page so that visitors from a url outside of my domain will be automatically transferred to a universal start page (eg.... -
Prevent 'Page has expired' when a client hits back to return to a search page
I have a search page that I want to enable private caching so that when a user hits the back button they dont get the page has expired error. I... -
Steve evetS #2
Re: Directing server php return page
Don wrote:
This is usually achieved in the client side HMTL, so to produce that> 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.
code in your PHP would be something like;
echo '<a href="http://your.url.com" target="_blank">Link</a>' . "\n";
Or if I could do it, better yet, is there a way to have the php script
return to theNot entirely sure I know what your asking here. To have a form, for> same window, but a new page, thereby preserving the original client page?
example, submit to itself and you return to the same page;
echo '<form action="' . $_SERVER['PHP_SELF'] . '" name="formName">';
and to retrieve values use;
$_REQUEST['formElementValue'];
Does this help??
Steve>
> Thanks for your help,
> Don
>
>
> ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
> [url]http://www.newsfeeds.com[/url] The #1 Newsgroup Service in the World! >100,000 Newsgroups
> ---= East/West-Coast Server Farms - Total Privacy via Encryption =---Steve evetS Guest
-
Don #3
Re: Directing server php return page
On Fri, 22 Oct 2004 18:25:45 +0100, Steve evetS <steve1401@yahoo.com> wrote:
Hi Steve,>Don wrote:>This is usually achieved in the client side HMTL, so to produce that>> 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.
>code in your PHP would be something like;
>
>echo '<a href="http://your.url.com" target="_blank">Link</a>' . "\n";
>
> Or if I could do it, better yet, is there a way to have the php script
>return to the>Not entirely sure I know what your asking here. To have a form, for>> same window, but a new page, thereby preserving the original client page?
>example, submit to itself and you return to the same page;
>
>echo '<form action="' . $_SERVER['PHP_SELF'] . '" name="formName">';
>
>and to retrieve values use;
>
>$_REQUEST['formElementValue'];
>
>Does this help??
>Steve>>
>> Thanks for your help,
>> Don
>>
>>
>> ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
>> [url]http://www.newsfeeds.com[/url] The #1 Newsgroup Service in the World! >100,000 Newsgroups
>> ---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Thanks for your prompt response. I'm really having trouble with this one. I still want the PHP
script to return it's own page, but I don't want to return it to the same client window that
contained the page which invoked the PHP script in the first place. How does your first example do
that? It looks to me like it will open up a new page (from a new URL), and not the return page from
the PHP script.
Thanks,
Don
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
[url]http://www.newsfeeds.com[/url] The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Don Guest



Reply With Quote

