如何访问虚拟主机网站的MySql数据库
我已经用 PHP 创建了自己的网站。我也有会员登录功能。对于登录功能,我必须在网络托管公司的数据库(我的托管由GoDaddy.com提供)中创建一个会员信息表,然后访问mySql数据库。
>>我如何在我的托管服务器中创建表?
我当前的代码是--
<?php
$host="localhost"; // Host name **??what will be my host??**
$username=""; // Mysql username
$password=""; // Mysql password
$db_name="test"; // Database name
$tbl_name="members"; // Table name
// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
I have created my own web site in PHP. I have member login function also. For login function i have to create a table of member info in the database of web hosting company(my hosting is provided by GoDaddy.com) and then access mySql database.
>> how can I create the table in my hosting server??
my current code is--
<?php
$host="localhost"; // Host name **??what will be my host??**
$username=""; // Mysql username
$password=""; // Mysql password
$db_name="test"; // Database name
$tbl_name="members"; // Table name
// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
托管提供商应该向您提供该信息。我们没有办法知道。
The hosting provider should give you that information. There is no way for us to know.
要通过 GoDaddy.com 为您的网站设置数据库,您必须:
客户经理
。虚拟主机
。然后你就可以创建你的 MySQL 数据库了。
创建数据库最多需要 1 小时。
创建数据库后,您可以单击
操作
,然后单击详细信息
以查找更多信息,例如其主机名。To set up a database for your website with GoDaddy.com, you have to:
Account Manager
.Web Hosting
.Then you can create your MySQL database.
It then takes up to 1 hour for the database to be created.
Once the database is created, you can click
Actions
and thenDetails
to find more information, such as its host name.