我正在尝试productnames
从我的 MySQL 表中返回所有内容。目前这只返回列中的名字
public function selectAll ()
{
$stmt = Database::get()->query('SELECT * FROM retrofootball_products');
while($row = $stmt->fetch())
{
return $row['productname'];
}
}
如何让它循环并选择所有产品名称?