当前位置: 代码迷 >> PHP >> 初学者:php获取元素ID根据id不同调用不用的文件并解析模板
  详细解决方案

初学者:php获取元素ID根据id不同调用不用的文件并解析模板

热度:159   发布时间:2013-08-04 18:26:16.0
菜鸟求救:php获取元素ID根据id不同调用不用的文件并解析模板
<?php
require_once("admin/include/global.inc.php");
include "admin/include/page.class.php";
if($_GET[q]){
 $help="kepiao";
 $helptitle="我的帮助文件,我自己写的帮助文件";
}
elseif($_GET[r]){
 $help="rule";

}
else{
$help="help";
$helptitle="帮助中心,超级帮助中心";

}

$Smarty->assign("cfg_cmstitle","$helptitle");
$Smarty->display("$help.html");

include "foot.php";

上面是我自己写的,实现不了自己要的效果啊!这样的写法url路径是help?q=$$$$、help?r=$$$$可以访问,但不是我要的url效果,我想达到help?u=q、help?u=r可以访问的方式。请问怎么能做到呢?




------解决方案--------------------

<?php
require_once("admin/include/global.inc.php");
include "admin/include/page.class.php";
if($_GET['u'] && $_GET['u']=='q'){
 $help="kepiao";
 $helptitle="我的帮助文件,我自己写的帮助文件";
}
elseif($_GET['u'] && $_GET['u']=='r'){
 $help="rule";

}
else{
$help="help";
$helptitle="帮助中心,超级帮助中心";

}

$Smarty->assign("cfg_cmstitle","$helptitle");
$Smarty->display("$help.html");

include "foot.php";
  相关解决方案