4-2
index.php
03 | require_once "function.php" ; |
06 | $news_list =list_news(); |
09 | show_page( 'list_tpl' ); |
20 | $sql = "select * from eznews order by post_time desc" ; |
23 | $result =mysql_query( $sql ) or die ( "{$sql}<br>" .mysql_error()); |
26 | <table class = 'table table-striped table-bordered' > |
28 | <th class = 'col-md-7 text-center' >新聞標題</th> |
29 | <th class = 'col-md-3 text-center' >發布時間</th> |
30 | <th class = 'col-md-2 text-center' >功能</th> |
35 | while ( $news =mysql_fetch_assoc( $result )){ |
37 | $title = empty ( $news [ 'news_title' ])? "無標題" : $news [ 'news_title' ]; |
42 | <a href= '{$_SERVER[' PHP_SELF ']}?op=view&sn={$news[' sn ']}' >{ $title }</a> |
44 | <td class = 'text-center' >{ $news [ 'post_time' ]}</td> |
45 | <td class = 'text-center' > |
46 | <a href= '#' class = 'btn btn-xs btn-danger' >刪除</a> |
47 | <a href= '#' class = 'btn btn-xs btn-warning' >編輯</a> |
53 | $news_list .= "</table>" ; |