当前位置:Gxlcms > PHP教程 > 取得phpcms网站下所有栏目的内容链接_PHP教程

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

时间:2021-07-01 10:21:17 帮助过:44人阅读

';  
        $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']."
"; } } ?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477135.htmlTechArticle?php $conf[DB_USER] = user; $conf[DB_PWD] = pwd; $conf[DB_NAME] = dbname; $conn = mysql_connect(localhost,$conf[DB_USER],$conf[DB_PWD]); if (!$conn) { echo 数据库连接错误!...

人气教程排行