Home  >  Article  >  Backend Development  >  我想根据数据库里存的每个人的不同职位值来显示对应include php文件要怎么实现

我想根据数据库里存的每个人的不同职位值来显示对应include php文件要怎么实现

WBOY
WBOYOriginal
2016-06-20 12:36:171077browse


这样写实现不了
新手 求大神指导


回复讨论(解决方案)

看着没问题啊,怎么实现不了?

你这是写在哪的代码?模板文件里,还是php脚本文件里?为什么不用呢?

看着没问题啊,怎么实现不了?




引用的文件一个都不会显示
$station =$_POST['station'];
是不是这个写错了

你这是写在哪的代码?模板文件里,还是php脚本文件里?为什么不用呢?



php脚本文件
把这个忘了  我试试

你这是写在哪的代码?模板文件里,还是php脚本文件里?为什么不用呢?



$station="";          //数据库的值是station 这里应该怎么填 才能
switch($station){
case '商品招商':
echo include"table_foot_zs.php";
break;
case '网站程序':
echo include"table_foot_cx.php";
break;
case '店铺代运营':
echo include"table_foot_dyy.php";
break;
case '鹊桥招商':
echo include"table_foot_qq.php";
break;
}
 
?>


你这是写在哪的代码?模板文件里,还是php脚本文件里?为什么不用呢?



$station="";          //数据库的值是station 这里应该怎么填 才能
switch($station){
case '商品招商':
echo include"table_foot_zs.php";
break;
case '网站程序':
echo include"table_foot_cx.php";
break;
case '店铺代运营':
echo include"table_foot_dyy.php";
break;
case '鹊桥招商':
echo include"table_foot_qq.php";
break;
}
 
?>
我不太明白你的描述,请详细描述你的问题

首先,一个php脚本里只能有一个多了肯定报错
再者,include文件时,为什么要echo一下?没这个必要啊。
不知道你想表达什么

$station=array('work'=>'商品招商'); //$station是从数据库取出的数组,比如$station = array('work'=>'商品招商')switch($station['work']){case '商品招商':	include "table_foot_zs.php";	break;case '网站程序':	include "table_foot_cx.php";	break;case '店铺代运营':	include "table_foot_dyy.php";	break;case '鹊桥招商':	include "table_foot_qq.php";	break;}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn