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

Logan Koester http://logankoester.com

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

Tidy Remote HTML (using a web service)

// Clean up some code using a web service. If you need to do this more quickly I suggest using a local tidy installation
// rather than my web service, but this is nice and easy. :)

   1  
   2  function tidied($url) {
   3    /* Cleans up a page via Tidy, returning the cleaned up html as a string
   4     * By Logan Koester <logan@logankoester.com> 2007-06-28
   5     * Props to http://infohound.net/tidy */
   6    return file_get_contents("http://logankoester.com/tools/tidy.php?q=$url");
   7  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS