php页面插入html代码

php页面插入html代码

大家好!
         碰到一个问题:在index.php的页面中的某一固定位置想插入一段html代码,查了一下资料,可以用:
<?php


echo "<html>\n";

echo "<head>\n";

echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=big5\">\n";
echo "<title>\n網頁標題</title>\n";
echo "</head>\n";

echo "</br></br>\n";
echo "</body>\n";
echo "</html>\n";



?>
的方式,但在浏览时报错:Parse error: parse error in c:\111\index.php on line 135
这如何处理?

你这段php代码没有错。可能是其他代码错了。134,135行左右
如履薄冰