嗨,我已经查看了一个已经发布的关于此的问题,并试图调整我的代码来做类似的事情。基本上,我的 mysql 数据库中有一个字段,其日期格式为 yyyy-dd-mm,我需要格式为 dd-mm-yyyy。目前,我的代码卡在了行上echo "<td><strong> ("d/m/y",". $row['date'] .")</strong></td>";
并读取此 Parse 错误:语法错误,意外 T_STRING,期望 ',' 或 ';'。不知道如何解决这个我会很感激的任何想法。
$result = mysql_query("SELECT * FROM dbGigs WHERE CURDATE() < date ORDER BY date");
echo "<table class=\"gigs\">
<tr>
<th>Venue</th>
<th>Town</th>
<th>Date</th>
<th>Time</th>
<th>Status</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td><strong>" . $row['venue'] . "</strong></td>";
echo "<td><strong>" . $row['town'] . "</strong></td>";
echo "<td><strong> ("d/m/y",". $row['date'] .")</strong></td>";
echo "<td><strong>" . $row['time'] . "</strong></td>";
echo "<td><strong>" . $row['status'] . "</strong></td>";
echo "</tr>";