通过for-each循环显示数据库

时间:2017-01-03 17:30:00

标签: java php html sql

我正在尝试使用for-each循环显示数据库,但是我的每个get方法都会突出显示并显示在我的其他类中找不到它们。我是PHP的新手,不知道为什么会出现这个错误。

For-Each Loop:

    <?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;
}

很抱歉,如果这样做不好。有什么想法吗?

0 个答案:

没有答案