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

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to