//=== 取出网站行业统计数据 ===
$strQuery="select id,kind,title,display,post_time from info where kind='d' and flag='Y' order by id desc limit 0,16";
$db->query($strQuery);
while ($db->next_record()) {
list($id,$kind,$title,$display,$post_time)=$db->Record;
$show_time=substr($post_time,5,5);
echo "· $title [$show_time] ";
}
?>
更多...
|