smarty 数据库查询有关问题

WBOY
Release: 2016-06-13 13:53:33
Original
769 people have browsed it

smarty 数据库查询问题
function class_id(){
if(!empty($_GET['class_id'])){
$sql="select * from goods_class as a,goods_detail as b where a.id=b.class_id and a.id='$_GET[class_id]'";
$query=mysql_query($sql);
while($row_class=mysql_fetch_array($query)){
$sm_class[]=array("name"=>$row_class['goods_name'],"id"=>$row_class['id'],"picture"=>$row_class['picture']);

  }
}
return $sm_class;
//print_r($sm_class);
}

class_id();
$smarty->assign("sm_class",$sm_class);

if语句放到方法外可以再html中正常显示,上面这样写则不行,为什么?

------解决方案--------------------
$sm_class =class_id();
$smarty->assign("sm_class",$sm_class);

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!