I'm a newbie and running php on Linux

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux