Why doesn't MSIE support the "application/xhtml+xml" MIME type? Is there a way around it?
<?php
header("Content-type: application/xhtml+xml; charset=iso-8859-1");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Database Manager</title>
<meta http-equiv="Content-Type"
content="application/xhtml+xml; charset=iso-8859-1" />
<link href="dbm.css" type="text/css" rel="stylesheet" />
</head>
Whenever I access it, MSIE pops up a download box asking if I want to save the file to disk and says that some files may be harmful, etc. Why is it doing this with an XHTML document type? Microsoft pisses me off so much.