嘿,我正在尝试使用 php iv 制作购物车,我与班上的其他学生交谈,他们认为出于某种原因,我的 getProductByTypeId 查询有问题......它会从数据库中获取除我的 ProductID 之外的所有内容。
下面是我的功能...
function getProductsByTypeID($TypeID){
//pull in global connection
global $connection;
//execute query to select all product types
$query="select * from product where TypeID = ".$TypeID;
$result = mysql_query($query, $connection);
testQuery($result);
//return list of customers
return $result;
}