欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

取得phpcms网站下所有栏目的内容链接

程序员文章站 2022-03-31 15:53:53
...
';  
        $sql = '(select title,url from v9_news where catid='.$catrow["catid"].' order by id desc)   
         UNION (select title,url from v9_product where catid='.$catrow["catid"].' order by id desc)';  
        $result = mysql_query($sql);  
        while ($row=mysql_fetch_array($result)) {     
            echo $row['url']."";           
        }  
    }  
?>