网页正常运行,但是网页最下端多出来两行代码,为什么?

Warning: include(footer.php) [function.include]: failed to open stream: No such file or directory in D:\phpStudy\WWW\index.php on line 19

Warning: include() [function.include]: Failed opening 'footer.php' for inclusion (include_path='.;C:\php\pear') in D:\phpStudy\WWW\index.php on line 19

这个是PHP的错误信息,可以关闭。请参见下面的文章http://www.jb51.net/article/38952.htm

Warning: include(footer.php) [function.include]: failed to open stream: No such file or directory in D:\phpStudy\WWW\index.php on line 19
Warning: include() [function.include]: Failed opening 'footer.php' for inclusion (include_path='.;C:\php\pear') in D:\phpStudy\WWW\index.php on line 19

看提示应该是程序里引用的路径找不到或者没有权限引起的,虽然页面打开了,估计部分功能未正常运行

这个是PHP的警告信息,意思是这个文件不存在

你在这个文件 D:\phpStudy\WWW\index.php 19行尝试打开一个不存在的文件

你有没有在页面上输出错误信息,开发者为了调试的需要有时候会这么做,但是搞完忘记删除了。所以页面上会出现错误信息和网页同时出现的现象。

这个是PHP的警告信息,意思是这个文件不存在

footer.php不存在