在Web开发中连接php和mysql数据库后期制作

时间:2017-02-11 07:45:15

标签: php mysql web-deployment

我写了一个简单的用户注册系统,它使用apache在我的本地机器上运行。 (本地主机在8080端口)。

我试图连接到mysql数据库的php文件如下:

<?php

$con = mysqli_connect("localhost","root","","register");
//localhost will have to change to host name if hosted on different server... I think.

// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }
?>

一切正常,我可以在本地计算机上注册/登录用户。

我知道一旦我准备好上传我的网站以在诸如surge.sh或github页面之类的免费服务器中托管它,我就必须更改$con = mysqli_connect("localhost","root","","register");

我将我的网站从我的存储库推送到github页面,当我点击&#34;注册&#34; /&#34;登录&#34;它没有加载页面,而是表现得好像我想下载.php文件。我该如何进行更改?我需要一些帮助和建议。

链接 http://melkam.fashion.surge.sh/ surge.sh网站 https://amanuel1995.github.io/ github pages

0 个答案:

没有答案