如何连接到数据库?
好的,我创建一个需要从远程数据库查询记录的应用程序。我已登录 phpmyadmin,并且需要从我的新 PHP 应用程序连接到此。我有 cpanel 访问权限和 phpmyadmin 选项卡。我可以做些什么来获取执行此操作所需的信息
$connection = mysql_connect(DB_HOST,DB_USER,DB_PASS,true);
mysql_select_db(DATABASE, $connection);
Ok I creating an application that needs to query records from my remote database. I am logged into phpmyadmin and I need to connect to this from my new PHP application. I have the cpanel access and the phpmyadmin tab. Is there something i can do to get the info needed to do this
$connection = mysql_connect(DB_HOST,DB_USER,DB_PASS,true);
mysql_select_db(DATABASE, $connection);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 cpanel 的“数据库”部分中,单击标有“MySQL 数据库”的图标。
您可以在那里创建数据库和用户。
主机名可能已在您的欢迎电子邮件中提供,以及您的 FTP 访问权限。无论如何,它应该出现在 phpMyAdmin 页面顶部的“服务器:”标签下
In the Databases section of cpanel, click on the icon labeled "MySQL Databases".
There you can create databases and users.
The hostname was probably provided in your welcome email, along with your FTP access. Anyway, it should appear at the top of your phpMyAdmin page, under the label "Server:"
首先:
您的远程数据库需要可通过 tcp/ip 访问。
第二:
First of all:
Your remote database needs to be accessible by tcp/ip.
Second: