我正在創建一個論壇,我想要最新的帖子帖子被格式化爲粗體或下劃線,但我不知道如何做到這一點。格式最近時間
這就是我到目前爲止
DB Structure;
id | threadname | threaddesc | posttime 1 thread description m-d-y 2 thread2 description2 m-d-y
此代碼Echo的的發表時間,但我不知道如何充分利用最新的時間進行格式化。
$sql2 = "SELECT * FROM `forum_sub_cats` WHERE `id`='".$row2['id']."'";
$res2 = mysql_query($sql2) or die(mysql_error());
while($row3 = mysql_fetch_assoc($res2)){
echo " <div class=\"pull-right\"> Latest Thread: ".$row3['posttime']."</div>";
}
在外行而言是這樣的:
IF($row3['posttime'] > other posttime's) {
<div class=\"pull-right\"> Latest Thread: <b> ".$row3['posttime']." </b></div>";
} else {
<div class=\"pull-right\"> Latest Thread: ".$row3['posttime']." </div>";
};
感謝。
通過降低posttime並格式化第一行來排序查詢。 –