Having an issue with a PHP file on my test server that is displaying extra white space, which is highlighted by a red box. This whitespace is also shown in the developer tools view. When the file is outputted, all of the content appears on one line.
Code:
<?php
header("Content-Type: text/html; charset=utf-8");
if(!isset($_GET['action']))
{
$_GET['action'] = "home";
}
echo("<!DOCTYPE HTML>");
echo("<html>");
echo("<head>");
echo("<title>Bug Tracker - ");
echo($_GET['action']);
echo("</title>");
echo('<link rel="stylesheet" href="common.css" />');
echo("</head>");
echo('<body>');
require("action.php");
echo("</body>");
echo("</html>")
?>
This issue persists in Firefox as well.