如何在magento中获取最新更新的表信息。
例如: 我创建了一个新的用户帐户名称:XXX和PW:XXX。我需要该信息或获取最近的更新表信息
答案 0 :(得分:1)
尝试
$collection = Mage::getResourceModel('customer/customer_collection');
$collection
->addAttributeToSelect(*)
->addAttributeToSort('updated_at', 'DESC')
->getSelect()->limit(1);
$customer = $collection->load();
答案 1 :(得分:0)
只需创建一个表格格式,如下面的
------------------------------------------
id (auto increment) | name | PW
------------------------------------------
并使用以下代码
SELECT * FROM table ORDER BY id DESC