PHP Tidy

URL:  
You are still on Jasper and Jasper doesn't do tidy functions "); } if ( $_GET ) { if ( !preg_match("#^http#i", "$_GET[url]", $x) || !file_get_contents($_GET[url])) { die("Invalid Input"); } $url = $_GET[url]; $html = file_get_contents("$url"); #### untested #### $tidy = tidy_parse_string($html); tidy_clean_repair($tidy); ################## $tidy = htmlspecialchars($tidy); echo ""; } ?>