PHP编程语法错误

PHP编程语法错误,php,Php,我是编程新手,需要一些帮助。我在C:\wamp64\www\project\topic.php的第99行收到以下错误:解析错误:语法错误,意外'。我之前做过这方面的研究,但问题是我实际上是在遵循一个关于构建一个简单论坛的教程,所以我有点迷路了。你能帮我找出这个错误吗 <?php echo '<tr class = "topic-post"> <td class = "user-post"> '. $row ['Username']. '<br/>'.

我是编程新手,需要一些帮助。我在C:\wamp64\www\project\topic.php的第99行收到以下错误:解析错误:语法错误,意外'。我之前做过这方面的研究,但问题是我实际上是在遵循一个关于构建一个简单论坛的教程,所以我有点迷路了。你能帮我找出这个错误吗

<?php
echo '<tr class = "topic-post"> 

<td class = "user-post"> '. $row ['Username']. '<br/>'.
 ('dmY H: i', strtotime ($row ['Post_date'])). '</ Td> 

<td class = "post-content"> '. htmlentities (stripslashes ($row 
['Post_content'])). '</ Td> 
</ Tr> ';
?>

您错过了对
date()
函数的调用

<?php
echo '<tr class = "topic-post"> 

<td class = "user-post"> '. $row ['Username']. '<br/>'.
 date('dmY H: i', strtotime ($row ['Post_date'])). '</ Td> 

<td class = "post-content"> '. htmlentities (stripslashes ($row 
['Post_content'])). '</ Td> 
</ Tr> ';
?>

您错过了对
date()
函数的调用

<?php
echo '<tr class = "topic-post"> 

<td class = "user-post"> '. $row ['Username']. '<br/>'.
 date('dmY H: i', strtotime ($row ['Post_date'])). '</ Td> 

<td class = "post-content"> '. htmlentities (stripslashes ($row 
['Post_content'])). '</ Td> 
</ Tr> ';
?>