老师能否帮我看下哪里有错的
我想做个前台页面的商品搜索功能,post传送值都没有问题,但是显示出来的一直都是所有商品,哪里需要修改的么?
在pro.inc.php里面加个关键字搜索的方法
function searchAllPros(){
$sql="select * from imooc_pro where pName like '%$keyword%' ";
$rows=fetchAll($sql);
return $rows;
}
search.php页面
<div class="shopList_top clearfix">
<?php
$pros=searchAllPros();
if($pros &&is_array($pros)):
foreach($pros as $pro):
$proImg=getProImgById($pro['id']);
?>
<div class="shop_item1">
<div class="shop_img">
<a href="proDetails.php?id=<?php echo $pro['id'];?>" target="_blank"><img height="200" width="187" src="image_220/<?php echo $proImg['albumPath'];?>" alt=""></a>
</div>
<h6><?php echo cut_str($pro['pName'],10,'...');?></h6>
<p><?php echo $pro['iPrice'];?>元</p>
</div>
<?php
endforeach;
endif;
?>
</div>