表中未显示数据库中可用的数据。我该如何解决?
代码:
<?php
$getPro=$ct->getCartProduct();
if($getPro){
$i=0;
while($result = $getPro->fetch_assoc()){
$i++;
?>
<?php echo $result['productName'];?>
<?php } }?>
这是功能:
public function getCartProduct(){
$sid=session_id();
$query="SELECT * FROM tbl_cart WHERE sid='$sid'";
$result =$this->db->select($query);
return $result;
}
答案 0 :(得分:-1)
使用此:
您的代码中的$query="SELECT * FROM tbl_cart WHERE sid=".$sid;
。
不是这个:
$query="SELECT * FROM tbl_cart WHERE sid='$sid'";
希望对您有帮助。继续编码。