I think you may be right about different php outputs.
When I looked at the source for index.php I saw:
PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Source of index.php
</title>
<meta name="description" content="The source code of index.php." />
<meta name="keywords" content="source, files, cheatserve" />
<link rel="stylesheet" href="../design.css" />
</head>
<body>
and then for the page with the error:
PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />??
<title>?Choose a Console
</title>?
<meta name="keywords" content="" />
<meta name="description" content="" />
<link rel="stylesheet" href="../design.css" />
</head>
<body>
Notice the added '?'..
What does the code that generates these pages look like?
Bookmarks