私のウェブサイトの 1 つに問題があります。次のようなデータベースに接続するための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 に変更すると、1 つのセクションが非常に大きく表示されます。自分で見るためのリンクを提供します。
http://www.rugbyspirit.net/ador_test/index.php「スコリレ参加者」を見てください。データベースに接続するための php ファイルを含まない、まったく同じ HTML コードです: http://www.rugbyspirit.net/ ador_test/test.html どうすればこの問題を解決できますか?