<?php
$q = addslashes($_SERVER['QUERY_STRING']);
$c = file_get_contents('http://hktags.gaodun.cn/tags.php?g=adm.www.cfa.cn'.$q);
//echo "<!-- ".$q." -->";
if (strlen($c) < 500) {
    echo "error";
	exit;
}else{
	$q_arr = explode("/",$q);
	// $q_no_h = str_ireplace("/","_",$q_no_h).".html";
	//echo "<!-- tags 5: /tags.php?/".$q_arr[1]."/ -->";
	// $c = str_ireplace("/tags.php?".$q,$q_no_h,$c);
}
echo $c;
