嗨,我已经查看了关于这个问题已经发布的问题,并尝试调整我的代码来做类似的事情。基本上,我在我的mysql数据库中有一个字段,该字段以yyyy-dd-mm格式记录日期,我需要将格式设置为dd-mm-yyyy。目前我的代码卡在这行上echo "<td><strong> ("d/m/y",". $row[ date ] .")</strong></td>";
,并读取此解析错误:语法错误,意外的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>";