magento 为客户创建订单时填充字段
我有一个外部应用程序,其联系人位于数据库服务器 db1 上,其次我在同一服务器上有 magento 数据库 db2。 我想用联系人信息填充管理面板中的客户下拉列表 我该怎么办?
I have an external application with the contacts on a database server db1 ,second i have magento database db2 in the same server.
I want to populate the customer dropdown in the adminpanel with contacts information
how can i do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用它来连接另一个数据库:
`
$配置=数组(
'主机' => $data['db_host'],
'用户名' => $data['db_user'],
'密码' => $data['db_pass'],
'数据库名称' => $data['数据库名称']
);
$connection = Mage::getSingleton('core/resource')->createConnection('connection_name', 'pdo_mysql', $config);
`
然后在
$connection
上,您可以使用fetchAll()
等。从现在开始,如果您想要的话,您可以准备“下拉”项目。
Try to use this to connect another DB:
`
$config = array(
'host' => $data['db_host'],
'username' => $data['db_user'],
'password' => $data['db_pass'],
'dbname' => $data['db_name']
);
$connection = Mage::getSingleton('core/resource')->createConnection('connection_name', 'pdo_mysql', $config);
`
Then on
$connection
You can usefetchAll()
etc.And from now You can prepare "dropdown" items if that's what You want.