包含一个php文件会使html部分无法正常工作

时间:2013-01-27 20:01:00

标签: html

我的某个网站出了问题。如果我包含一个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 participante” 这里是完全相同的HTML代码,不包括连接数据库的php文件:http://www.rugbyspirit.net/ador_test/test.html 我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

这是一个CSS问题。你只需要调整你的CSS:

.box {
    background: url(images/box.png) repeat 0 0;
    padding: 19px 32px 29px 32px;
    position: relative;
}

height: 100%设置了.box,这是不需要的。这导致Chrome问题。