-3

このコードでは、テーブル (cust_college) のすべてのレコードを表示する必要があります。しかし、この関数は、他の行ではなく、そのテーブルの最初の行のみを返しています。解決策を教えてください

$read = Mage::getSingleton('core/resource')->getConnection('core_read');
$a = "SELECT * from cust_college";

$qry = $read->query($a);
$res = $qry->fetch(PDO::FETCH_ASSOC); //fetch row
foreach ($res as $payment) {
    echo $payment = $res[college];
    echo $payment = $res[value_id];
    echo $payment = $res[shop_id];
    echo $payment = $res[cust_address];
}

$store = Mage::app()->getStore()->getCode();
4

1 に答える 1

0
$result = $read->getSelect()->getAdapter()->fetchAll('SELECT * from cust_college');
于 2012-08-13T12:03:34.930 に答える