Sau đây là đoạn code sắp xếp tin tức theo năm
$query = ' SELECT * FROM tin_tuc ORDER BY ngaydang DESC'; $sql = $db->query($query); $rows = $db->getObjectList(); $arr_data = array(); foreach($rows as $item){ $date_create = $item->ngaydang; $month_year = date("m-Y",strtotime($date_create)); $arr_data[$month_year ][] = $item; } foreach($arr_data as $month_year =>$arr_item) { ?> foreach($arr_item as $item) { ?> name?> } } ?>
0 comments:
Post a Comment