Bluehost.com Web Hosting $6.95

Redirect

This is a discussion on Redirect within the PHP General forums, part of the PHP Programming Forums category; Hi there people, I'm looking for a function that will redirect a browser to another page after a PHP ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 10-25-2003
Joao Andrade
 
Posts: n/a
Default Redirect


Hi there people,

I'm looking for a function that will redirect a browser to another page
after a PHP scrip has run. I tried serching for it in the doc but found
nothing. It shall be similar to Tcl's "ns_returnredirect".
Thanx.

Joao Penna Andrade
Undergraduate, Mechanical Engineering
UNICAMP, Brazil
Reply With Quote
  #2 (permalink)  
Old 10-25-2003
James Hicks
 
Posts: n/a
Default Re: [PHP] Redirect

On Saturday 25 October 2003 10:54 am, Joao Andrade wrote:
> Hi there people,
>
> I'm looking for a function that will redirect a browser to another page
> after a PHP scrip has run. I tried serching for it in the doc but found
> nothing. It shall be similar to Tcl's "ns_returnredirect".
> Thanx.


You can either use the php function header() or the HTML meta refresh thing.

James
Reply With Quote
  #3 (permalink)  
Old 10-25-2003
Jon Kriek
 
Posts: n/a
Default Re: [PHP] Redirect

header() refresh/redirect with delay.

---------------------------
<?php
ob_start();
if(!headers_sent()) {
header('Refresh: 1; Url=http://www.example.com');
exit();
}
ob_end_flush();
?>
---------------------------

header() refresh/re-direct without delay

---------------------------
<?php
ob_start();
if(!headers_sent()) {
header('Location: http://www.example.com');
exit();
}
ob_end_flush();
?>
---------------------------

--
Jon Kriek
http://phpfreaks.com
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 03:44 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0