Rate this script:  I Love it  /   I Hate it

Content Negotiation


Code

<?php
header("Vary: Accept");
if (stristr($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml') || stristr($_SERVER["HTTP_USER_AGENT"],"W3C_Validator"))
{
  header('Content-type: application/xhtml+xml');
  echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
}
else
{
  header('Content-type: text/html');
}
?>

 

 
Content Negotiation scripts | Content Negotiation snippet | Content Negotiation example | Content Negotiation tutorial | Content Negotiation code