このコードでは、テーブル (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();