我正在尝试从 MySQL 数据库中列出 PHP 中的日记事件,但按天分组。我会解释的。
这是我到目前为止的截图:
如您所见,2012 年 10 月 23 日有两个日记事件,并显示了两个日历图标/表示/任何内容。我实际上希望它在左侧显示一个日历图标,但在右侧列出所有当天的事件,直到第二天 - 正如我在下面的 a̶r̶t̶i̶s̶t̶s̶ idiots 印象中所见:
这是我刚刚编写的代码,有人可以指出我正确的方向:
$SQL = "SELECT entry_id, entry_title, entry_body, entry_date, entry_day, entry_month, entry_year ";
$SQL .= "FROM pages_diary WHERE entry_month = :this_month AND entry_year = :this_year ";
$SQL .= "ORDER BY entry_date DESC;";
// PDO stuff
if ($STH->rowCount() > 0) {
while($row = $STH->fetch()):
$this_db_month_word = mktime(0, 0, 0, $row['entry_month']);
$this_db_month_word = strftime("%b", $this_db_month_word);
echo '<div class="diary_events_item" id="diary_events_item_'.$row['entry_id'].'">';
echo '<div class="diary_events_item_left">';
echo '<div class="calendar_wrap">';
echo '<div class="calendar_wrap_top">';
echo $this_db_month_word;
echo '</div>';
echo '<div class="calendar_wrap_bottom">';
echo str_pad($row['entry_day'],2,'0',STR_PAD_LEFT);;
echo '</div>';
echo '</div>';
echo '</div>';
echo '<div class="diary_events_item_right">';
echo '<strong>'.htmlspecialchars($row['entry_title']).'</strong><br>';
echo '<p>'.htmlspecialchars($row['entry_body']).'</p>';
echo '</div>';
echo '<div class="clear"></div>';
echo '</div>';
endwhile;
} else {
echo '<p>There are no diary entries logged for <strong>'.$this_month_word.' '.$this_year.'</strong>.</p>';
}
不寻找确切的代码(虽然那会很麻烦),只是一个解释就可以了,我相信我可以从中解决。
修复
在 WHILE 循环结束时,我添加了:
$last_db_day = $row['entry_day'];
然后将日历项包装在:
if ($last_db_day != $row['entry_day']) {
echo '<div class="calendar_wrap_top">';
echo $this_db_month_word;
echo '</div>';
echo '<div class="calendar_wrap_bottom">';
echo str_pad($row['entry_day'],2,'0',STR_PAD_LEFT);;
echo '</div>';
}