在帝国CMS中,你可以使用 [ecmsinfo]
标签来随机调用数据。以下是两种常见的场景:
- 按表随机调用。
- 随机调用本栏目。
示例代码
按表随机调用
html
[ecmsinfo]"select * from phome_ecms_news order by rand() desc limit 6",6,18,0,24,2,0[/ecmsinfo]
随机调用本栏目
html
[ecmsinfo]"select * from phome_ecms_news where classid='$GLOBALS[navclassid]' order by rand() desc limit 6",6,18,0,24,2,0[/ecmsinfo]