Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Syam Kumar R. http://www.webmasterview.com/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Content Negotiation

Serve XHTML as application/xhtml+xml to browsers which accept it (and to W3C Validator).

   1  <?php 
   2  header("Vary: Accept");
   3  if (stristr($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml') || stristr($_SERVER["HTTP_USER_AGENT"],"W3C_Validator"))
   4  {
   5    header('Content-type: application/xhtml+xml');
   6    echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
   7  }
   8  else
   9  {
  10    header('Content-type: text/html');
  11  }
  12  ?>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS