Php-Error:FATAL ERROR语法错误,意外'<'在第2行

时间:2017-11-03 07:01:54

标签: php

它在第2行显示错误,如此FATAL ERROR语法错误,意外'<'在第2行 请告诉我这里缺少什么。我的代码如下所示

<?php
<footer>
<div class="container">
<center>
<p>Copyright &copy; Lifestyle Store. All Rights Reserved | Contact Us: +91 
9000000000</p>
</center>
</div>
</footer>
?>

1 个答案:

答案 0 :(得分:1)

你不能直接在PHP中编写HTML,就像那样,试试:

<footer>
<div class="container">
<center>
<p>Copyright &copy; Lifestyle Store. All Rights Reserved | Contact Us: +91 
9000000000</p>
</center>
</div>
</footer>

删除<?php?>代码。

或者在PHP echo中添加你的html代码:

<?php
echo '<footer>
<div class="container">
<center>
<p>Copyright &copy; Lifestyle Store. All Rights Reserved | Contact Us: +91 
9000000000</p>
</center>
</div>
</footer>';
?>