首页 > 教程 >
SQL调用织梦CMS栏目的地址方法
2023-03-30教程围观次
简介SQL调用织梦CMS栏目的地址方法,静态时为静态访问地址,动态浏览时为动态访问地址。12345678$sql="SELECT*FROMdede_arctypewheretopid=0andishidden=0orderbysortrankasc,idasc";$dsql->SetQuery($sql);$dsql->Execute();$topids=array();while($arr=$dsq
SQL调用织梦CMS栏目的地址方法,静态时为静态访问地址,动态浏览时为动态访问地址。
1 2 3 4 5 6 7 8 | $sql="SELECT * FROM dede_arctype where topid=0 and ishidden = 0 order by sortrank asc,id asc"; $dsql->SetQuery($sql); $dsql->Execute(); $topids= array(); while($arr = $dsql->GetArray()) { $typeurl = GetOneTypeUrlA($arr); //获得栏目地址 } |
下载链接:网站源码/小程序源码/网站模板下载
相关文章
- node mysql 小程序源码 nodejs连接数据库
- 使用PHP+ajax+mysql+layui实现每日签到及提醒功能
- PHP使用mysqli同时执行多条sql查询语句的实例
- Discuz_X3.4的数据库创建表SQL错误的解决方法
- 提高mysql千万级大数据SQL查询优化30条经验(Mysql索引优化注意)
- Mysql报错“Incorrect key file for table” 数据库表显示“使用中”解决办法
- PHPCMS模型字段单选复选只能填写不能使用SQL语句查询
- 宝塔面板 - 通过宝塔面板安装的mysql 默认密码是什么
- 服务器硬盘空间不足导致MySQL异常的一系列问题及解决办法
- 在 MySQL 中 int (10) 和 int (11) 的区别