我正在撰写评论系统,但由于某种原因,当我关闭我的php标签时,它会出现在我的页面上?这里的文件任何帮助将不胜感激。我确定这是一个简单的解释,但我已经通过一个细齿梳而无法看到任何拼写错误。
textarea {
width:80%;
height:80px;
color: white;
background-color: rgba(72,72,72,1.00);
border: none;
}
button{
width:100px;
height:30px;
background-color: rgba(72,72,72,1.00);
border: none;
color: white;
cursor: pointer;
}

<?php
date_default_timezone_set('Europe/London');
include 'comments.inc.php';
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="comments.css"/>
</head>
<body>
<?php
echo "<form method='POST' action='".setComments()."'>
<input type='hidden' name='uid' value='Anonymous'>
<input type='hidden' name='date' value='".date('Y-m-d H:i:s')."'>
<textarea name='message'></textarea><br>
<button name='submit' type='submit'>Comment</button>
</form>";
?>
</body>
</html>
&#13;