Home > CMS Tutorial > DEDECMS > body text

How to call the address of the column in Dreamweaver CMS

藏色散人
Release: 2020-01-07 09:14:14
Original
2329 people have browsed it

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);     //获得栏目地址
}
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template