This one netizen publishes the Php+ajax cascading menu, we often say is no refresh.
This one netizen publishes the Php+ajax cascading menu, we often say is no refresh.
Header ("CONTENT-TYPE:TEXT/HTML;CHARSET=GBK");//output code to avoid Chinese garbled
Require_once (DirName (__file__). " /include/config_base.php ");
Require_once (DirName (__file__). " /include/inc_type.php ");
Require_once (DirName (__file__). " /include/inc_cache.php ");
$fatherid = "";
$fatherid =$_get[' Fatherid '];
if (!empty ($fatherid)) {
if (!file_exists ('/cache/sun_ '. $fatherid. ' _cache.txt ')) {
$ty = new Type (0);
$typeOptions = $ty->getsmalloption ($fatherid);
if (!empty ($typeOptions)) {
Cache_write ('/cache/sun_ '. $fatherid. ' _cache.txt ', $typeOptions);
echo "RN "; echo $typeOptions; echo"";
$tl->close ();
}
}else{
$typeOptions =cache_get ('/cache/sun_ ' $fatherid. ' _cache.txt ');
echo "RN "; echo $typeOptions; echo"";
}
}
?>
Header ("CONTENT-TYPE:TEXT/HTML;CHARSET=GBK");//output code to avoid Chinese garbled
Require_once (DirName (__file__). " /include/config_base.php ");
Require_once (DirName (__file__). " /include/inc_type.php ");
Require_once (DirName (__file__). " /include/inc_cache.php ");
$pid = "";
$pid =$_get[' pid '];
if ($pid ==1) {
if (!file_exists ('.. /cache/bigtype.cache.txt ')) {
$ty = new Type (0);
$typeOptions = $ty->getbigoption ();
Cache_write ('/cache/bigtype.cache.txt ', $typeOptions);
echo "RN "; echo"--Unlimited column--rn "Echo $typeOptions; echo"";
$ty->close ();
}else{
$typeOptions =cache_get ('/cache/bigtype.cache.txt ');
echo "RN "; echo"--Unlimited column--rn "Echo $typeOptions; echo"";
}
}
?>
http://www.bkjia.com/PHPjc/630480.html www.bkjia.com true http://www.bkjia.com/PHPjc/630480.html techarticle This one netizen publishes the Php+ajax cascading menu, we often say is no refresh. This one netizen publishes the Php+ajax cascading menu, we often say is does not have the refresh. PHP header (C ...