我的一个网站出了点问题。如果我包含一个 php 文件来连接到这样的数据库:
<?php
$username = "";
$password = "";
$hostname = "";
$dbhandle = mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL");
$selected = mysql_select_db("rugbyspi_ador",$dbhandle) or die("Could not select examples");
mysql_close($dbhandle);
?>
并将文件从 index.html 重命名为 index.php 一节显得非常大。我会给你链接,你自己看:
http://www.rugbyspirit.net/ador_test/index.php看看“Scolile参与者”这里是完全相同的HTML代码,不包括连接到数据库的php文件:http ://www.rugbyspirit.net/ ador_test/test.html 我该如何解决这个问题?