Hi,

I ran the following code snippet on Windows IIS 7, in my index.php file and it worked fine. But when run it on Linux, the "die" code is executed.

Is there an include file or something else I need to to process this on a linux server?

<?php
        echo '<h1>Redirecting... Please Wait</h1>';
/*
        redirect('welcome.html');
*/
        if (!headers_sent()) {
                header('Location: ' . 'http://auction.househops.com/index.php');
        } else {
                die('Could not redirect.');
        }
?>


Thanks,
King

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

Reply via email to