PHP编程语法错误

时间:2017-10-20 22:51:37

标签: php

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

<?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> ';
?>

1 个答案:

答案 0 :(得分:3)

您错过了对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> ';
?>