magento 为客户创建订单时填充字段

发布于 2024-10-18 19:56:57 字数 96 浏览 2 评论 0原文

我有一个外部应用程序,其联系人位于数据库服务器 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃颗糖壮壮胆 2024-10-25 19:56:57

尝试使用它来连接另一个数据库:
`
$配置=数组(
'主机' => $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 use fetchAll() etc.

And from now You can prepare "dropdown" items if that's what You want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文