💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
include/datalistcp.class.php 动态分页类 DEDEINC 输出include路径:D:/www/dedecms/include 加载模板 include DedeInclude('templets/flash_edit.htm'); DEDEROOT 织梦根目录 D:/www/wdcms 打包加入菜单 ~~~ 安装 Delete From `#@__plus` where plusname= '广告管理插件'; INSERT INTO `#@__plus` (`plusname`, `menustring`, `mainurl`, `writer`, `isshow`, `filelist`) VALUES ('广告管理插件', '<m:item name=''广告管理插件'' link=''yoby_ad_main.php'' rank=''plus_广告管理插件'' target=''main'' />', '', 'Yoby', 1, ''); 卸载 Delete From `#@__plus` where plusname= '广告管理插件'; ~~~ 动态分页类使用 ~~~ require_once(dirname(__FILE__)."/include/common.inc.php");//载入基础文件 require_once(DEDEINC."/datalistcp.class.php");//载入动态分页类 $dl = new DataListCP(); $dl->pageSize = 25; //设定每页显示记录数(默认25条) $dl->SetParameter(tid,$tid); $dl->SetTemplate(DEDETEMPLATE.'/'.$cfg_df_style.'/list.htm');//载入模板 $dl->SetSource($sql);//设定查询SQL $dl->Display(); 模板中 {dede:datalist} <li>{field.fieldname1/} - {field.fieldname2/}</li> {/dede:datalist} {tag:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/} ~~~