Home > Article > CMS Tutorial > How to call the address of the column in Dreamweaver CMS
How does Dreamweaver CMS call the address of the column?
The address of the calling column of Dreamweaver CMS (non-label call)
Recommended learning: Dreamweaver cms
The address of the calling column, It is a static access address when static, and it is a dynamic access address when browsing dynamically.
$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); //获得栏目地址 }
The above is the detailed content of How to call the address of the column in Dreamweaver CMS. For more information, please follow other related articles on the PHP Chinese website!