怎么设置html页头
时间:2021-07-01 10:21:17
帮助过:9人阅读
如何设置html页头
本帖最后由 dd0607 于 2014-01-06 01:42:27 编辑
index.php
include("include/conn.php");
include("header.php");
include("footer.php");
?>
conn.php
$host='localhost';
$user_name='root';
$password='123123';
$db='netbox';
$conn = mysqli_connect($host,$user_name,$password,$db) or die("Connect failed: " . mysqli_connect_error());
?>
header.php
test
footer.php
当index.php不加载conn.php,页面显示正常
当加载conn.php后,页面会自己添加html/head/body等html标签,同时去除了我header.php里的DOCTYPE/html/head,其他内容则统统丢进body里,这是什么原因造成的呢?
PS:加载conn.php后右击页面查看源码,是正常的,但显示是有问题的 会在页面顶部顶出一行空白,IE11和Chrome33按F12查看HTML代码就会发现已经不正常了
刚从ASP转PHP,ASP这样逻辑写法是没问题,不懂PHP问题出在哪里
分享到:
更多
------解决方案--------------------把conn.php逐行注释检查