Home  >  Article  >  CMS Tutorial  >  How to call the address of the column in Dreamweaver CMS

How to call the address of the column in Dreamweaver CMS

藏色散人
藏色散人Original
2020-01-07 09:14:062165browse

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!

Statement:
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