我想在HTML表格中顯示一個簡單的PHP日期函數,但是當我運行該頁面時,它只是在表格中顯示實際的代碼。日期不顯示
<?php
echo"
<table border='1'>
<tr>
<td>
echo date('l jS \of F Y h:i:s A');
</td>
<td>Rectangle 2</td>
</tr>
<tr>
<td>Rectangle 3</td>
<td>Rectangle 4</td>
</tr>
<tr>
<td>Rectangle 5</td>
<td>Rectangle 6</td>
</tr>
<tr>
<td>Rectangle 7</td>
<td>Rectangle 8</td>
</tr>
<tr>
<td>Rectangle 9</td>
<td>Rectangle 10</td>
</tr>
</table>";
?>
你將文件保存爲'.php'。我想你把文件保存爲'.html'。它應該是'.php'的擴展名。 – MH2K9 2014-11-21 03:29:55
你沒有關閉yout代碼上的''',就在'echo'日期之前。 – aerojun 2014-11-21 03:33:16