php+ajax级联菜单[无刷新级联菜单]_PHP教程
这一个网友发布的php+ajax级联菜单,我们常说的就是无刷新了。
header("Content-type: text/html;charset=GBK");//输出编码,避免中文乱码
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 "
echo $typeOptions;
echo "";
$tl->Close();
}
}else{
$typeOptions=cache_get('/cache/sun_'.$fatherid.'_cache.txt');
echo "
echo $typeOptions;
echo "";
}
}
?>
header("Content-type: text/html;charset=GBK");//输出编码,避免中文乱码
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 "
echo "rn";
echo $typeOptions;
echo "";
$ty->Close();
}else{
$typeOptions=cache_get('/cache/bigtype.cache.txt');
echo "
echo "rn";
echo $typeOptions;
echo "";
}
}
?>
推荐阅读
-
PHP+mysql实现的三级联动菜单功能示例
-
Ajax无刷新技术实现省市县三级联动下拉菜单--Asp.Net
-
PHP+ajax实现二级联动菜单功能示例
-
用php+javascript实现二级级联菜单的制作
-
落伍首发 php+mysql 采用ajax技术的 省 市 地 3级联动无刷新菜单 源码
-
.net和javascript 结合 ,生成三级联动无刷新下拉菜单【修改版】 .netJavaScript
-
.net和javascript 结合 ,生成三级联动无刷新下拉菜单【修改版】 .netJavaScript
-
PHP+mysql实现的三级联动菜单功能示例
-
关于php+mysql+ajax省市区三级联动菜单,求相助
-
PHP+AJAX实现无刷新注册(带用户名实时检测)_PHP教程