I am using MAMP, NetBeans to develop php website on my Mac. I wrote the following code but ran into error repeatedly. I tried all the commented lines but neither one works.
<?php
if ($output == 1) //Authenticated = yes
{
$url = "http://www.google.com”;
//error_reporting(E_ALL); ini_set('display_errors', 'On');
//
// include('./dlheader.inc');
//header("Content - Length: 0");
// header("Location: http://google.com", true, 303);
// header("Location:".$url);
// header("Location: http://google.com", true);
// exit;
/* flush();
if (headers_sent()) {
die('cannot send location header (anymore)');
}
else {
header('Location: '.$url);
die();
}
*/
//echo '<html><head><meta http-equiv="refresh" content="1;url=' . $url . '"/>;
}
?>
This code is exactly after the <body> tag. Thanks for your help in advance.