我试图使用for-each循环显示数据库,但是我的每个get方法都高亮显示,并显示在我的另一个类中找不到它们。我对php非常陌生,不知道为什么会发生这个错误。
对于每个回路:
<?php foreach ($view->productDataSet as $productData) {
echo '<td>'.$productData->getProductID().
'</td><td>'.$productData->getProductName().
'</td><td>'.$productData->getProductPrice().
'</td><td>'.$productData->getProductDesc().
'</td><td>'.$productData->getProductManufacturer().
'</td><td>'.$productData->getQuantity().
'</td><td>'.'<img src="images/'.$productData->getPhotoName().'" alt="no picture"/>'.
'</td> </td>';
} ?>
</tbody>
我相信问题发生在生产线上 $view->productDataSet as $productData
但是我真的不知道这行代码是什么意思。下面的类是我的productdataset类,它调用应该显示表的sql查询。
class ProductsDataSet {
protected $_dbHandle, $_dbInstance;
public function __construct() {
$this->_dbInstance = Database::getInstance();
$this->_dbHandle = $this->_dbInstance->getdbConnection();
}
public function fetchAllProducts() {
$sqlQuery = 'SELECT * FROM products';
echo $sqlQuery;
$statement = $this->_dbHandle->prepare($sqlQuery); // prepare a PDO statement
$statement->execute(); // execute the PDO statement
$dataSet = [];
while ($row = $statement->fetch()) {
$dataSet[] = new ProductData($row);
}
return $dataSet;
}
很抱歉,如果这不是很好。有什么想法吗?
暂无答案!
目前还没有任何答案,快来回答吧!