[e:loop={栏目ID/专题ID,显示条数,操作类型,只显示有标题图片,附加SQL条件,显示排序}]
成都创新互联公司专业为企业提供宝塔网站建设、宝塔做网站、宝塔网站设计、宝塔网站制作等企业网站建设、网页设计与制作、宝塔企业网站模板建站服务,10余年宝塔做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
trtd
a href="?=$bqsr[titleurl]?" target="_blank"?=$bqr[title]?/a
(发布时间:?=date('Y-m-d',$bqr[newstime])?)
/td/tr[/e:loop]
pageadmin cms下载的压缩包里面有运行助手的,解压后就可以直接通过他们压缩包里面的运行助手打开首页,首页的后面加/e/master就可以进入后台的操控界面,后台的默认账号和密码都是admin,你可以是试试吧
在首页模板中加入下面代码,尽量放在底部。
script language="javascript" type="text/javascript" src="/e/htmlindex/index_html.php"/script
在 /e/ 建立文件夹 htmlindex 并设置 777权限
将下面代码保存在 /e/htmlindex/index_html.php
修改刷新时间,将文件中1200改为你想要的时间,单位为秒。
?php
require("../class/connect.php");
include("../class/db_sql.php");
include("../class/config.php");
include("../class/functions.php");
include("../class/t_functions.php");
require LoadLang("pub/fun.php");
require("../data/dbcache/class.php");
require("../data/dbcache/MemberLevel.php");
include("../class/chtmlfun.php");
$link=db_connect();
$empire=new mysqlquery();
$filepath_s="indexhtmlhc.txt";
$time=time();
@$filemtime=(int)filemtime($filepath_s)+1200;
/*
函数解释
file_exists() 函数检查文件或目录是否存在。
mkdir() 函数创建目录。
time() 函数返回当前时间的 Unix 时间戳。
filemtime() 函数返回文件内容上次的修改时间。
*/
if (!file_exists($filepath_s)){
fopen($filepath_s, 'w');
@chmod($filepath_s, 0777);
ReIndex();
}elseif(!file_exists($filepath_s) || (filemtime($filepath_s)+1200)time()){
fopen($filepath_s, 'w');
@chmod($filepath_s, 0777);
ReIndex();
}else{
// do nothing
}
db_close();
$empire=null;
?