如何访问虚拟主机网站的MySql数据库

发布于 2024-08-31 18:05:03 字数 599 浏览 0 评论 0原文

我已经用 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 技术交流群。

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

发布评论

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

评论(2

2024-09-07 18:05:03

托管提供商应该向您提供该信息。我们没有办法知道。

The hosting provider should give you that information. There is no way for us to know.

流云如水 2024-09-07 18:05:03

要通过 GoDaddy.com 为您的网站设置数据库,您必须:

  1. 登录到您的客户经理
  2. 单击虚拟主机

然后你就可以创建你的 MySQL 数据库了。

创建数据库最多需要 1 小时。

创建数据库后,您可以单击操作,然后单击详细信息以查找更多信息,例如其主机名。

To set up a database for your website with GoDaddy.com, you have to:

  1. Log in to your Account Manager.
  2. Click 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 then Details to find more information, such as its host name.

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