【发布时间】:2010-10-09 22:45:35
【问题描述】:
我的英语不太好。我基本上想显示最后一篇帖子在论坛上发布的日期。这是我的论坛shema:
`forum_id` int(11) NOT NULL auto_increment
`forum_name` varchar(255) NOT NULL
`forum_description` text NOT NULL
`forum_order` int(11) NOT NULL
`thread_id` int(11) NOT NULL auto_increment
`thread_title` varchar(255) NOT NULL
`thread_text` text NOT NULL
`thread_date` datetime NOT NULL
`forum_id` int(11) NOT NULL default '0'
`thread_author` int(11) NOT NULL
`comment_id` int(11) NOT NULL auto_increment
`comment_text` text NOT NULL
`comment_thread_id` int(11) NOT NULL default '0'
`comment_poster` int(11) NOT NULL default '0'
`comment_date` datetime NOT NULL
论坛.php
$query = mysql_query("SELECT * FROM forums ORDER BY forum_order ASC");
while ($row = mysql_fetch_assoc($query)) {
<h3>Forum: <?php echo $row['forum_name'] ?><h3>
<div>Desc: <?php echo $row['forum_description'] ?></div>
<div>Last post: <?php echo $??['comment_date'] ?></div>
<?php } ?>
如何获取所有论坛的最后评论日期? 也许在我存储最后评论日期的线程表中添加一个字段? 也许更好的方法? 不知道如何更好地解释这一点。
谢谢
【问题讨论】: