帝国CMS模板调用:只读取当天发布的信息
2020-03-25 12:37帝国cms
<?php $timedays=strtotime(date("Y-m-d",time()));//今天0点的时间点 $timedaye=$timedays+3600*24;//今天24点的时间点,两个值之间即为今天一天内的数据 $xinxi_sql=$empire->query('select id,title,titleurl from '.$dbtbpre.'ecms_news where newstime>='.$timedays.' and newstime<='.$timedaye.' order by newstime desc limit 10'); while($xinxi_row=$empire->fetch($xinxi_sql)){ ?> <li><a href="<?=$xinxi_row[titleurl]?>"><?=$xinxi_row[title]?></a></li> <? } ?>
很赞哦! ()
- 上一篇
帝国CMS模板灵动标签调用同级栏目导航,带当前栏目高亮判断
代码如下:其中hover为当前栏目判断CSS高亮样式! [e:loop={"select classname,classpath,classid from phome_enewsclass where bclassid='".$class_r[$GLOBALS[navclassi
- 下一篇
帝国CMS模板自定义页面用PHP获取页面ID、页面名称、标题、关键词、描述、内容等变量的方法
一,获取自定义页面的页面ID,用以下代码: <?php $pageid=str_replace("page","",$classid); ?> 在帝国CMS中,自定义页面的页面ID好像是唯一开放的PHP变量,利用$classid得到自