它在第2行显示错误,如此FATAL ERROR语法错误,意外'<'在第2行 请告诉我这里缺少什么。我的代码如下所示
<?php
<footer>
<div class="container">
<center>
<p>Copyright © Lifestyle Store. All Rights Reserved | Contact Us: +91
9000000000</p>
</center>
</div>
</footer>
?>
答案 0 :(得分:1)
你不能直接在PHP中编写HTML,就像那样,试试:
<footer>
<div class="container">
<center>
<p>Copyright © 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 © Lifestyle Store. All Rights Reserved | Contact Us: +91
9000000000</p>
</center>
</div>
</footer>';
?>