I used php to generate an html file, the header of the doc looks okay but renders as though unable to see the stylesheet in Safari 1.2.3 and Mozilla 1.7 and in Mac IE the php generated html doesn't show at all, which seems odd.
Any ideas?
<?php
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"
\"http://www.w3.org/TR/html4/strict.dtd\">
<html lang=\"en\">
<head>
<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">
<title>php version</title>
<link rel=\"stylesheet\" type=\"text/css\" href=\"style/mystyle-style.css\">
</head>
<body>
<div id=\"header\">
<hr />
</div>
<div id=\"mainContentBlock\">";
?>
(there are two other chunks of php generated html after this.)