电话
13363039260
可根据条件查询前几条最新文章列表,用循环语句输出。
参数说明:
channel_name:频道名称
top:显示的条数,0为显示所有
strwhere:SQL查询语句
get_article_list(channel_name, top, strwhere)
<!--示例一:显示新闻频道最新8条信息,新闻频道的名称为“news”--> <%set DataTable nlist=get_article_list("news", 8, "status=0")%> <!--使用foreach循环输出--> <%foreach(DataRow dr in nlist.Rows)%> 新闻标题:{dr[title]} <%/foreach%> <!--示例二:显示新闻频道最新推荐8条信息,新闻频道的名称为“news”--> <%set DataTable nlist=get_article_list("news", 8, "status=0 and is_red=1")%> <!--使用foreach循环输出--> <%foreach(DataRow dr in nlist.Rows)%> 新闻标题:{dr[title]} <%/foreach%>