• 网站plus文件夹里建立个 form.php
<?php
require_once(dirname(__FILE__)."/../include/common.inc.php");
require_once(DEDEINC.'/datalistcp.class.php');
$sql = "SELECT * FROM `dede_diyform1`";//【diyform1】是你的自定义表单里的【表名】
$dlist = new DataListCP();
$dlist->SetTemplate(DEDETEMPLATE."/plus/form.htm");//templets/plus/form.htm模板路径
$dlist->SetSource($sql);
$dlist->display();
?>
对应的在,/templets/plus 目录下新建个 form.htm
{dede:config.pagesize value='5'/}<!--这里设置每页显示的条数-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>自定义表单</title>
</head>
<body>
<ul>
{dede:datalist}
<li>{dede:field.name /}-----{dede:field.sex /}<li>
{/dede:datalist}
</ul>
{dede:pagelist listsize=5/}
</body>
</html>
{dede:field.name /}{dede:field.sex /}  根据你自己的自定义表单字段来填写
如果要引入你默认模板的头部和尾部或者其他,可以使用个自定义函数来解决
打开 /include/extend.func.php 加个函数
/**
 *  其他页面调用模板的头部尾部模板
 *
 * @access    public
 * @param     string  $path  模板路径
 * @return    string
 */
if(!function_exists('pasterTempletDiy'))
{
function pasterTempletDiy($path)
{
require_once(DEDEINC."/arc.partview.class.php");
global $cfg_basedir,$cfg_templets_dir,$cfg_df_style;
$tmpfile = $cfg_basedir.$cfg_templets_dir.'/'.$cfg_df_style.'/'.$path;
$dtp = new PartView();
$dtp->SetTemplet($tmpfile);
$dtp->Display();
}
}
自定义模板中调用
<?php pasterTempletDiy("head.htm"); ?>