允许客户端从不同站点连接到我的数据库,而无需查看数据库连接参数

发布于 2024-11-14 01:52:04 字数 96 浏览 3 评论 0原文

我希望我的客户(经销商客户)能够从他们的不同站点连接到我的数据库 (mysql),而无法使用 PHP 查看具有数据库连接参数的文件。

请问我怎样才能实现这个目标?

I want my clients (reseller clients) to be able to connect to my database (mysql) from their different sites without being able to see the file that has teh db connection parameters using PHP.

Please how can I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

淡墨 2024-11-21 01:52:04

通过使用隧道。您需要创建一个连接到 MySQL 并向请求方公开 MySQL PHP API 的脚本。之后,您的经销商使用该脚本与 MySQL 对话。这表明隧道脚本本身应该有某种密码保护,这样就不会让任何人使用您的 MySQL。

By using tunneling. You need to create a script that connects to MySQL and exposes MySQL PHP API to the requesting party. After that your resellers use that script to talk to MySQL. That indicates that the tunneling script itself should have some sort of password protection so you don't get anyone using your MySQL.

瞎闹 2024-11-21 01:52:04

这个问题将告诉您如何加密连接字符串.

这个告诉你如何安全连接。

This question will tell you how to encrypt the connection string.

And this one tells you how to connect securely.

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