You can use pipe to run the command and capture the stdout.
Then dump it with proper header to browser.
Note, If the external command (specially video encoding) takes long time
you should probably use cron for this and maintain a queue. I recommend you
apply some sorts of caching also.
--
Shiplu
Hi All,
I want to redirect the stdout of an executing shell command to stdout of
php called by browser
The command some stream like command like
ffmpeg -i rtmp://192. -
rtmpdump -v -r rtmp://192 -a app -y stream -o -
so its live video, and the execution not stops, till the user navigate
; *Sent:* Saturday, September 24, 2011 12:41 PM
> *To:* Dajka Tamas
> *Cc:* php-general@lists.php.net
> *Subject:* Re: [PHP] PHP redirect
>
> ** **
>
> it redirecting me to unavailable/wrong page, the data came from database
> but each time it gives me & instead of &a
Try header("Location: ".html_entity_decode($data['feed_link']));
From: muad shibani [mailto:muad.shib...@gmail.com]
Sent: Saturday, September 24, 2011 12:41 PM
To: Dajka Tamas
Cc: php-general@lists.php.net
Subject: Re: [PHP] PHP redirect
it redirecting me to unavail
lto:muad.shib...@gmail.com]
> Sent: Saturday, September 24, 2011 12:36 PM
> To: php-general@lists.php.net
> Subject: [PHP] PHP redirect
>
> when I try to go to a URL by using PHP header function so if the URL
> contains & it converts it to & so the needed page will not
ave to worry about that )
-Original Message-
From: muad shibani [mailto:muad.shib...@gmail.com]
Sent: Saturday, September 24, 2011 12:36 PM
To: php-general@lists.php.net
Subject: [PHP] PHP redirect
when I try to go to a URL by using PHP header function so if the URL
contains & it
when I try to go to a URL by using PHP header function so if the URL
contains & it converts it to & so the needed page will not
display correctly I tried to use:
$url = urldecode($data['feed_link']);
header ( "Location: $url" );
but I can't get it
> Twitter: http://twitter.com/m_elensule
> Facebook: http://facebook.com/menelion
>
> - Original message -
> From: Steve Staples
> To: php-general@lists.php.net
> Date: Monday, December 6, 2010, 6:41:34 PM
> Subject: [PHP] Redirect output to a file on the web server
>
ssage -
From: Steve Staples
To: php-general@lists.php.net
Date: Monday, December 6, 2010, 6:41:34 PM
Subject: [PHP] Redirect output to a file on the web server
On Mon, 2010-12-06 at 16:19 +, Richard Quadling wrote:
> On 6 December 2010 15:46, Ferdi wrote:
> > On 6 December 2010 20:47,
On Mon, 2010-12-06 at 16:19 +, Richard Quadling wrote:
> On 6 December 2010 15:46, Ferdi wrote:
> > On 6 December 2010 20:47, Steve Staples wrote:
> >
> >> On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote:
> >> > Greetings List members,
> >> >
> >> > I have a script that takes quite a while to
On 6 December 2010 15:46, Ferdi wrote:
> On 6 December 2010 20:47, Steve Staples wrote:
>
>> On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote:
>> > Greetings List members,
>> >
>> > I have a script that takes quite a while to run, one or two hours, I wish
>> to
>> > redirect the normal php output t
On 6 December 2010 20:47, Steve Staples wrote:
> On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote:
> > Greetings List members,
> >
> > I have a script that takes quite a while to run, one or two hours, I wish
> to
> > redirect the normal php output to a file on the webserver itself. I don't
> > min
On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote:
> Greetings List members,
>
> I have a script that takes quite a while to run, one or two hours, I wish to
> redirect the normal php output to a file on the webserver itself. I don't
> mind if in the process, the browser displays a blank page. The re
Greetings List members,
I have a script that takes quite a while to run, one or two hours, I wish to
redirect the normal php output to a file on the webserver itself. I don't
mind if in the process, the browser displays a blank page. The reason I want
to do this is that if the script crashes or th
On Thu, 2010-06-10 at 21:06 +0300, Ahmed Mohsen wrote:
> Hi folks,
> I know that this is not a php question, but I'm sure it some kind
> related to it. I need to put my public files under "public" folder, and
> other includes files and database config in other folder not shown to
> the public,
On Thu, Jun 10, 2010 at 14:06, Ahmed Mohsen wrote:
[snip!]
>
> I don't want to enter (example.com/public) to view index.php file. I just
> want to enter (example.com) and it redirects to the public folder and shows
> only (example.com/index.php) in the URL. And for login.php should display
> (ex
Hi folks,
I know that this is not a php question, but I'm sure it some kind
related to it. I need to put my public files under "public" folder, and
other includes files and database config in other folder not shown to
the public, but i don't know how to do that. I hope if some one show me
how
On Tue, 2009-06-02 at 20:43 -0700, revDAVE wrote:
> Thank you Jay - Shawn & Paul for helping this newbie!
>
>
> --
> Thanks - RevDave
> Cool @ hosting4days . com
> [db-lists 09]
>
>
>
>
Also, according to the spec, the URL should be in absolute form, not
relative like you have there.
Ash
ww
Thank you Jay - Shawn & Paul for helping this newbie!
--
Thanks - RevDave
Cool @ hosting4days . com
[db-lists 09]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Tue, Jun 02, 2009 at 11:50:55AM -0700, revDAVE wrote:
> I have this line at the end of 1 big php block...
>
> header('Location: mypage.php?id=' .
> $_SESSION['id'].'&cat='.$_SESSION['cat']);
>
> It works fine on my dev. Testing server but does not forward on the actual
> website
>
> Any
revDAVE wrote:
> I found the answer here - I had --- whitespace & ... if
> Location: http://www.phpbuilder.com/board/showthread.php?t=10310794
>
> Blank space above the php tag or below the final php tag
> It is not intuitive but ...
>
> if can cause problems such as the php header function no
I found the answer here - I had --- whitespace & ... if http://www.phpbuilder.com/board/showthread.php?t=10310794
Blank space above the php tag or below the final php tag
It is not intuitive but ...
if http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On 6/2/2009 12:41 PM, "revDAVE" wrote:
>> [snip]
>> I have this line at the end of 1 big php block...
>>
>> header('Location: mypage.php?id=' .
>> $_SESSION['id'].'&cat='.$_SESSION['cat']);
>>
>> It works fine on my dev. Testing server but does not forward on the
>> actual
>> website
>>
>>
On 6/2/2009 12:04 PM, "Jay Blanchard" wrote:
> [snip]
> I have this line at the end of 1 big php block...
>
> header('Location: mypage.php?id=' .
> $_SESSION['id'].'&cat='.$_SESSION['cat']);
>
> It works fine on my dev. Testing server but does not forward on the
> actual
> website
>
> Any
[snip]
I have this line at the end of 1 big php block...
header('Location: mypage.php?id=' .
$_SESSION['id'].'&cat='.$_SESSION['cat']);
It works fine on my dev. Testing server but does not forward on the
actual
website
Any way to fix this?
[/snip]
The first thing that you will want to do is
I have this line at the end of 1 big php block...
header('Location: mypage.php?id=' .
$_SESSION['id'].'&cat='.$_SESSION['cat']);
It works fine on my dev. Testing server but does not forward on the actual
website
Any way to fix this?
Home is php 5
Server (not sure) might not be 5 - ma
On Thu, 16 Apr 2009 09:26:52 -0500, nos...@mckenzies.net (Shawn McKenzie) wrote:
>Stuart wrote:
>> 2009/4/15 Don :
>>> I have some code in my index.php file that check the user agent and
>>> redirects to a warning page if IE 6 or less is encountered.
>>>
>>> 1. I'm using a framework and so calls t
Stuart wrote:
> 2009/4/15 Don :
>> I have some code in my index.php file that check the user agent and
>> redirects to a warning page if IE 6 or less is encountered.
>>
>> 1. I'm using a framework and so calls to all pages go through index.php
>> 2. The code that checks for IE 6 or less and redirec
I Agree with @stuart.
Regards,
Igor Escoar
Systems Analyst & Interface Designer
--
Personal Blog
~ blog.igorescobar.com
Online Portifolio
~ www.igorescobar.com
Twitter
~ @igorescobar
On Thu, Apr 16, 2009 at 6:05 AM, Stuart wrote:
> 2009/4/15 Don :
> > I have some code in my index.php fil
2009/4/15 Don :
> I have some code in my index.php file that check the user agent and
> redirects to a warning page if IE 6 or less is encountered.
>
> 1. I'm using a framework and so calls to all pages go through index.php
> 2. The code that checks for IE 6 or less and redirects is in index.php
>
hey,boy, i think you should use datebase to store user status,use user's
internet-ip and intranet-ip to idenification.
> To: php-general@lists.php.net
> From: d...@program-it.ca
> Date: Wed, 15 Apr 2009 16:20:05 -0400
> Subject: Re: [PHP] redirect to a page the fist time a
"Andrew Ballard" wrote in message
news:b6023aa40904150926g3e6fb478s36b18b6a53ec3...@mail.gmail.com...
On Tue, Apr 14, 2009 at 10:30 PM, Jason Pruim wrote:
>
>
> On Apr 14, 2009, at 10:11 PM, "Don" wrote:
>
>> Hi,
>>
>> I have some code in my index.php file that check the user agent and
>> redi
On Tue, Apr 14, 2009 at 10:30 PM, Jason Pruim wrote:
>
>
> On Apr 14, 2009, at 10:11 PM, "Don" wrote:
>
>> Hi,
>>
>> I have some code in my index.php file that check the user agent and
>> redirects to a warning page if IE 6 or less is encountered.
>>
>> 1. I'm using a framework and so calls to al
On Apr 14, 2009, at 10:11 PM, "Don" wrote:
Hi,
I have some code in my index.php file that check the user agent and
redirects to a warning page if IE 6 or less is encountered.
1. I'm using a framework and so calls to all pages go through
index.php
2. The code that checks for IE 6 or less
Don wrote:
Hi,
I have some code in my index.php file that check the user agent and
redirects to a warning page if IE 6 or less is encountered.
1. I'm using a framework and so calls to all pages go through index.php
2. The code that checks for IE 6 or less and redirects is in index.php
I know
Hi,
I have some code in my index.php file that check the user agent and
redirects to a warning page if IE 6 or less is encountered.
1. I'm using a framework and so calls to all pages go through index.php
2. The code that checks for IE 6 or less and redirects is in index.php
I know how to redire
On Jun 12, 2008, at 8:32 AM, Bastien Koert wrote:
On Thu, Jun 12, 2008 at 7:46 AM, Yashesh Bhatia <[EMAIL PROTECTED]>
wrote:
What about doing it the other way ... submitting the page to a
script
that calls on the pdf creation, yet doesnt leave this script - then
proceed to redirect when
Yashesh Bhatia wrote:
What about doing it the other way ... submitting the page to a script
that calls on the pdf creation, yet doesnt leave this script - then
proceed to redirect when that script (pdf) has been completed?
S
steven:
the steps u'r suggesting are
1 - submit form (1.html)
You are totally in the wrong way.
I would use an tag and onclick property for opening the PDF in popup &
relocating the current page
HTH
Nitsan
On 12/06/2008, Yashesh Bhatia <[EMAIL PROTECTED]> wrote:
>
> Hello:
>
>I'm trying to emulate a problem i'm trying to solve as follows.
>
> 1 - user
On Thu, Jun 12, 2008 at 7:46 AM, Yashesh Bhatia <[EMAIL PROTECTED]> wrote:
> >
> > What about doing it the other way ... submitting the page to a script
> > that calls on the pdf creation, yet doesnt leave this script - then
> > proceed to redirect when that script (pdf) has been completed?
> >
>
>
> What about doing it the other way ... submitting the page to a script
> that calls on the pdf creation, yet doesnt leave this script - then
> proceed to redirect when that script (pdf) has been completed?
>
> S
>
steven:
the steps u'r suggesting are
1 - submit form (1.html) to script (2.
On Thu, 2008-06-12 at 16:27 +0530, Yashesh Bhatia wrote:
> Aschwin:
>
> Hi i tried
>
> --
> //echo '';
> //echo 'window.location.href="3.html";';
> //echo '';
> header("Location: 3.html");
> exit;
> -
Aschwin:
Hi i tried
--
//echo '';
//echo 'window.location.href="3.html";';
//echo '';
header("Location: 3.html");
exit;
--
but that did not work :(.
thanks for the tip.
yashesh b
Yashesh Bhatia wrote:
Hello:
I'm trying to emulate a problem i'm trying to solve as follows.
1 - user enters information into a html form and submits
2 - a php script is invoked on the submit and a pdf file is stamped
and made available for download
3 - the script finally redirects the user
Hello:
I'm trying to emulate a problem i'm trying to solve as follows.
1 - user enters information into a html form and submits
2 - a php script is invoked on the submit and a pdf file is stamped
and made available for download
3 - the script finally redirects the user to a thank you html pag
Hi Jack,
here is a link that can be of help
http://bugs.php.net/bug.php?id=22839
also you can use custom error handler function , catch errors and
write to stderr
function myErrorHandler($errno, $errstr, $errfile, $errline)
{
$ERROR='';
switch ($errno) {
case E_USER_ERROR
How can I implement in PHP, a script which redirects stdout to stderr,
such that echo, etc. print to stderr instead of stdout?
I can redirect stdout to stderr when invoking PHP like so:
php script-name >&2
However I want to perform this redirection within the script itself.
The solution I curre
Ah, i thought to remember that the limit is lower on IIS than on Apache,
maybe i've just some memory faults. ;)
GET is meant to define what to GET, not to define content. This sounds a
bit academic, but remember that the GET-args are a part of the URI and
so will also go into the http-log for
If it's on the same domain/user account, that's probably a better
idea but with $data['rurl'] being used, I'm (ignorantly) assuming that
RURL = Remote URL.
On 5/3/07, Richard Lynch <[EMAIL PROTECTED]> wrote:
On Thu, May 3, 2007 9:26 am, Merlin wrote:
> I am checking plausability inside a
Beating a dead horse here, since it's been mentioned twice already, but
yeah --- $_SESSION's are the way to go with this.
And wherever you have your error handling, do:
And for the record, it's not just the HTTP server that trims it, but the
browser generally does, as well, to avoid
On Thu, May 3, 2007 9:26 am, Merlin wrote:
> I am checking plausability inside a php script that receives a POST
> submit. If an error occures the user should be redirected back, along
> with his original data filled into the forms.
>
> There is a problem with this. As the GET method, which the red
Merlin wrote:
I am checking plausability inside a php script that receives a POST
submit. If an error occures the user should be redirected back, along
with his original data filled into the forms.
There is a problem with this. As the GET method, which the redirect is
using, only allows a cer
Hi there,
I am checking plausability inside a php script that receives a POST
submit. If an error occures the user should be redirected back, along
with his original data filled into the forms.
There is a problem with this. As the GET method, which the redirect is
using, only allows a certai
Merlin schrieb:
Hi there,
I am checking plausability inside a php script that receives a POST
submit. If an error occures the user should be redirected back, along
with his original data filled into the forms.
There is a problem with this. As the GET method, which the redirect is
using, onl
Thanks all I manged to fix it.
The headers were already sent by a validation class I was using and needed a
bit of output buffering to get it working.
R.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Tue, April 17, 2007 10:02 am, Ross wrote:
> Right,
>
> Have tried the full url for the header and it still doesn't work. I
> may have
> to resort to...javacript redirects unless someone can suggest a way
> around
> it.
>
> Here is the phpinfo();
>
> http://s202801613.websitehome.co.uk/info.php
>
Ross wrote:
> Have tried the full url for the header and it still doesn't work.
I forget what your exact issue is, but a good first step to take when
debugging a problem with header() is to replace it with echo. For example:
echo "Location: $url";
Instead of:
header("Location: $url");
Almost e
Ross wrote:
Right,
Have tried the full url for the header and it still doesn't work. I may have
to resort to...javacript redirects unless someone can suggest a way around
it.
Here is the phpinfo();
http://s202801613.websitehome.co.uk/info.php
Is is 1and1 hosting if anyone had had any expe
Ross wrote:
Right,
Have tried the full url for the header and it still doesn't work. I may have
to resort to...javacript redirects unless someone can suggest a way around
it.
Here is the phpinfo();
http://s202801613.websitehome.co.uk/info.php
Is is 1and1 hosting if anyone had had any expe
>
> Have tried the full url for the header and it still doesn't
> work. I may have
> to resort to...javacript redirects unless someone can suggest
> a way around
> it.
>
> Here is the phpinfo();
>
> http://s202801613.websitehome.co.uk/info.php
>
>
> Is is 1and1 hosting if anyone had had an
That is, unless you use output buffering. It may not be the most elegant
solution (using header() to redirect users increases server calls), but I
built a template-driven php site that calls:
...depending on certain conditions which means I can then use header() even
after I have started output
Right,
Have tried the full url for the header and it still doesn't work. I may have
to resort to...javacript redirects unless someone can suggest a way around
it.
Here is the phpinfo();
http://s202801613.websitehome.co.uk/info.php
Is is 1and1 hosting if anyone had had any experience of them.
Can you re-iterate what is happening - I have a site with 1and1 and use
header() with no issues.
On Mon, April 9, 2007 8:38 am, Martin Marques wrote:
> Ben Liu escribió:
>> What's the prescribed method for redirecting a user forcibly to from
>> the
>> non-SSL secured version of a page to the SSL-secured version? Is
>> this
>> handled at the web server level or at the script level. I found this
On 4/10/07, Zoltán Németh <[EMAIL PROTECTED]> wrote:
I have separate document roots for the http and the https stuff, say
"htdocs" and "htdocs-secure" - this can be done with apache
configuration
then I need only to put a single redirecting line into the
htdocs/index.php like
https://my.server.c
I have separate document roots for the http and the https stuff, say
"htdocs" and "htdocs-secure" - this can be done with apache
configuration
then I need only to put a single redirecting line into the
htdocs/index.php like
https://my.server.com/";);
?>
and that's all
greets
Zoltán Németh
2007.
{header("Location:
https://".$_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME']);exit;}
?>
Very bad solution.
Don't just tell us it's bad, explain why (even with an RTFM or URL to
look at)... nobody learns from an answer like this.
The only thing I can think of is that $_SERVER variables c
On 4/9/07, Peter Lauri <[EMAIL PROTECTED]> wrote:
You might be able to do this by putting an .htaccess file in your webroot of
non-ssl:
--
RewriteEngine On
RewriteRule ^/(.*)$ https://www.yourdomain.com/$1 [L]
--
This appears to work:
RewriteEngine On
RewriteCond %{SERVER_PORT} !^44
> -Original Message-
> From: Ben Liu [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 09, 2007 3:52 PM
> To: Martin Marques; PHP
> Subject: Re: [PHP] redirect http to https
>
> On 4/9/07, Martin Marques wrote:
>
> >
> > This should be done with the re
On 4/9/07, Ben Liu <[EMAIL PROTECTED]> wrote:
What's the prescribed method for redirecting a user forcibly to from
the non-SSL secured version of a page to the SSL-secured version? Is
this handled at the web server level or at the script level. I found
this by googling:
https://".$_SERVER['SERVE
Ben Liu wrote:
> On 4/9/07, Martin Marques wrote:
>
>>
>> This should be done with the rewrite instruction of apache, or what ever
>> instructionyour web server has.
>
>
> Um...guess I will have to check with our hosting company about this.
> Thanks.
>
> - Ben
>
Hello,
FYI :
https://www.yourdom
On 4/9/07, Martin Marques wrote:
This should be done with the rewrite instruction of apache, or what ever
instructionyour web server has.
Um...guess I will have to check with our hosting company about this. Thanks.
- Ben
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, vis
Ben Liu escribió:
What's the prescribed method for redirecting a user forcibly to from the
non-SSL secured version of a page to the SSL-secured version? Is this
handled at the web server level or at the script level. I found this by
googling:
This should be done with the rewrite instruction o
Ben Liu wrote:
> What's the prescribed method for redirecting a user forcibly to from
> the non-SSL secured version of a page to the SSL-secured version? Is
> this handled at the web server level or at the script level. I found
> this by googling:
>
> if($_SERVER['SERVER_PORT'] !== $encport || $_
What's the prescribed method for redirecting a user forcibly to from
the non-SSL secured version of a page to the SSL-secured version? Is
this handled at the web server level or at the script level. I found
this by googling:
{header("Location: https://".$_SERVER['SERVER_NAME'].$_SERVER
['S
Thanks everyone for your help. In the end the simplest one that works
for this specific project was:
echo "";
Andrei wrote:
Andrei wrote:
It works with document.location = '...'; too. I use only this method
and it worked on all browsers...
Assuming the end user has JS turned on. JS an
Andrei wrote:
It works with document.location = '...'; too. I use only this method and
it worked on all browsers...
Assuming the end user has JS turned on. JS and Meta Refreshes are not
acceptable when you need to be sure the redirect works.
Depends on your user target...
I gener
Andrei wrote:
It works with document.location = '...'; too. I use only this method and
it worked on all browsers...
Assuming the end user has JS turned on. JS and Meta Refreshes are not
acceptable when you need to be sure the redirect works.
--
John C. Nichel IV
Programmer/System Admin
On Wednesday 05 April 2006 14:33, Chris Shiflett wrote:
> Mark Kelly wrote:
> > > > You can also use something like:
> > > >
> > > > echo "";
> > >
> > > There's no need to use a meta tag to mimic HTTP headers. PHP
> > > provides the header() function.
> >
> > I have been using that method when I g
; header('location: ' . $url);
> die();
> }
> }
> ?>
>
> HTH
>
> Dan
>
> -
> Dan Parry
> Senior Developer
> Virtua Webtech Ltd
> http://www.virtuawebtech.co.uk
>
> -Original M
Mark Kelly wrote:
> > You can also use something like:
> >
> > echo "";
>
> There's no need to use a meta tag to mimic HTTP headers. PHP
> provides the header() function.
I have been using that method when I got part-way through some
processing that produces output, and hit something that requir
At 11:21 PM +0200 4/4/06, Schalk wrote:
Greetings All,
In JSP I have access to a function called sendRedirect() to send a
user from one page to another, usually after some processing
completed. Is there a similar function in PHP?
After processing a form and sending the data via email, I need
Senior Developer
Virtua Webtech Ltd
http://www.virtuawebtech.co.uk
-Original Message-
From: Mark Kelly [mailto:[EMAIL PROTECTED]
Sent: 05 April 2006 14:19
To: php-general@lists.php.net
Subject: Re: [PHP] redirect using php
On Wednesday 05 April 2006 13:55, Chris Shiflett wrote:
> Mar
On Wednesday 05 April 2006 13:55, Chris Shiflett wrote:
> Mark Kelly wrote:
> > You can also use something like:
> >
> > echo "";
>
> There's no need to use a meta tag to mimic HTTP headers. PHP provides
> the header() function.
I have been using that method when I got part-way through some proces
Mark Kelly wrote:
You can also use something like:
echo "";
There's no need to use a meta tag to mimic HTTP headers. PHP provides
the header() function.
Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
It works with document.location = '...'; too. I use only this method and
it worked on all browsers...
Andy
Barry wrote:
Andrei wrote:
document.location =
'http://where.to.go.com/example.php?param1=';
Wasn't it -> document.location.href ='www.example.com';
o_O ?
Barry
--
PHP Gene
Andrei wrote:
document.location =
'http://where.to.go.com/example.php?param1=';
Wasn't it -> document.location.href ='www.example.com';
o_O ?
Barry
--
Smileys rule (cX.x)C --o(^_^o)
Dance for me! ^(^_^)o (o^_^)o o(^_^)^ o(^_^o)
--
PHP General Mailing List (http://www.php.net/)
To unsubscri
Or with javascript:
PS: Sorry Mark...
Andy
Mark Kelly wrote:
On Tuesday 04 April 2006 22:27, Brady Mitchell wrote:
On Tuesday 04 April 2006 22:27, Brady Mitchell wrote:
> > -Original Message-
> > In JSP I have access to a function called sendRedirect() to
> > send a user
> > from one page to another, usually after some processing completed. Is
> > there a similar function in PHP?
>
> Take a look at the
Brady Mitchell wrote:
-Original Message-
In JSP I have access to a function called sendRedirect() to
send a user
from one page to another, usually after some processing completed. Is
there a similar function in PHP?
Take a look at the header() function.
http://php.net/header
> -Original Message-
> In JSP I have access to a function called sendRedirect() to
> send a user
> from one page to another, usually after some processing completed. Is
> there a similar function in PHP?
Take a look at the header() function.
http://php.net/header
To redirect you can us
http://uk.php.net/manual/en/function.header.php
---
http://chrome.me.uk
-Original Message-
From: Schalk [mailto:[EMAIL PROTECTED]
Sent: 04 April 2006 22:21
To: php-general@lists.php.net
Subject: [PHP] redirect using php
Greetings All,
In JSP I have access to a
Greetings All,
In JSP I have access to a function called sendRedirect() to send a user
from one page to another, usually after some processing completed. Is
there a similar function in PHP?
After processing a form and sending the data via email, I need to
redirect them to another page. I cur
Hi All,
This may turn out to be more of an apache question (but I'm hoping there
are some apache experts on the list as well), but I'm wondering how I
would go about automatically redirecting requests for /rss.xml to read
the contents of /rss/rss.xml instead?
Any help appreciated!
Much warm
If you are using apache you can use the redirect module
Servername www.ces.ncsu.edu
ServerAlias *
Redirect permanent / http://www.nc4h.org/
--
Leon
On Wednesday 10 August 2005 16:52, Robert Sossomon wrote:
> Anyone have a script or know of a way to check and see what the url is of a
> syst
Try doing a pattern match on the server string and then using Header
to redirect them if its coming from the old server:
if (preg_match("/ces.ncsu/i", $_SERVER["HTTP_HOST"])) {
header("Location: http://www.nc4h.org";);
}
- schnippy
On 8/10/05, Robert Sossomon <[EMAIL PROTECTED]> wr
Anyone have a script or know of a way to check and see what the url is of a
system and then sending it to another url if it is not right?
I have this problem where if someone is using:
http://www.ces.ncsu.edu/depts/fourh
instead of:
http://www.nc4h.org
to get to my site it is breaking other piece
On 7/30/05, Joe Wollard <[EMAIL PROTECTED]> wrote:
> To obtain a certain portion of the referring url you might look at
> parse_url();
> See http://us3.php.net/manual/en/function.parse-url.php
>
> - or -
>
> If you want to bounce the user right back to the previous page including get
> variables
To obtain a certain portion of the referring url you might look at
parse_url();
See http://us3.php.net/manual/en/function.parse-url.php
- or -
If you want to bounce the user right back to the previous page
including get variables you could just use this snippet.
On Jul 30, 2005, at 9:36
Dotan Cohen wrote:
Hi list,
I need to redirerect a page, and send the referer information along
with the redirect. I have tried:
header("Location: $url");
and
print"";
Both of them redirect as expected, but the browser (Firefox and Opera)
do not send referer information along with the request.
1 - 100 of 354 matches
Mail list logo