分类信息分页列表程序编写例子

2024-01-29 11:40 小编

存放目录格式:

插件程序存放目录用:/e/extend/infolist/
插件程序模板存放目录用:/e/extend/infolist/template/

所需程序文件:

/e/extend/infolist/index.php主程序文件

/e/extend/infolist/template/index.temp.php主程序模板文件

image.png

主程序文件内容(/e/extend/infolist/index.php):

image.png

主程序模板文件内容(/e/extend/infolist/template/index.temp.php):

<?php
if(!defined('InEmpireCMS'))
{
        exit();
}
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>分类信息分页列表</title>
<link href="template/images/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<br>
<br>
<br>
<table width="500" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
  <tr>
    <td height="25"><strong>分类信息分页列表:</strong></td>
  </tr>
  <tr>
    <td height="25" bgcolor="#FFFFFF">
                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <?php
                while($r=$empire->fetch($sql))        //循环获取查询记录
                {
                        $titleurl=sys_ReturnBqTitleLink($r);        //标题链接
                ?>
                <tr>
                <td width="74%" height="25">
                    <img src="template/images/arrow.gif" border="0" align="absmiddle">&nbsp;[<a href="<?=$public_r[newsurl]?>e/action/ListInfo.php?classid=<?=$r[classid]?>&amp;ph=1&amp;myarea=<?=$r[myarea]?>"><?=$r[myarea]?></a>] <a href="<?=$titleurl?>" target="_blank">
                <?=esub(stripslashes($r[title]),32)?>
                </a></td>
                <td width="26%"><div align="center">
                <?=date('Y-m-d',$r[newstime])?>
                </div></td>
                </tr>
                <?php
                }
                ?>
                </table>

    </td>
  </tr>
  <tr>
    <td height="30" bgcolor="#FFFFFF">
      <div class="epages">
        <?=$listpage?>
      </div></td>
  </tr>
</table>
</body>
</html>

说明:模板可用Dreamweaver可视化制作。其中蓝色部分代码为不允许直接访问模板文件的作用。

访问Hello World插件文件主程序:/e/extend/newnews/index.php

image.png


Tag: 信息
在线咨询 拨打电话

电话

13363039260

微信二维码

微信二维码