无限级分类:下拉列表、导航LINK

下拉列表

链接数据库
这种方式
//调用连接的方法
$mysqli->connect($db_host, $db_user, $db_password, $db_name);
//对象调用query这个方法 设置编码格式
$mysqli->query("set names utf8");
查询数据库
query($sql);
    //mysqli_fetch_assoc从结果集中取出一行为__关联数组__
    while ($row = mysqli_fetch_assoc($result)){
        //从这个关联数组中根据catename取出值,从新赋值,为了就是符合展示的形式
        //str_repeat()重复字符串,第一个参数:重复的内容,第二个参数:重复的次数,然后拼接上|--
        $row['catename'] = str_repeat('  ',$spac).'|--'.$row['catname'];
        //把这个关联数组添加到数组中 $res_a()这个数组为索引数组
        $res_a[] = $row;
        getList($row['id'],$res_a,$spac);
    }
    return $res_a;

}
封装输出方法
/**
 * 1、把展示视图封装成一个函数
 * 2、根据传的参数,来设置选择的状态,但是没有生效??
 */


function displayCate($pid = 0,$selected = 1){
    $r =  getList($pid);
    global $sss;
    $sss.= "';
}
echo displayCate(0,2);

/**
 * 1、方法内不能直接用方法外的变量,如果要用,那就必须在方法内声明一个相同名称的全局变量,具体了解
 * http://www.jianshu.com/p/09217582cc08
 * 2、mysqli_fetch_assoc()这个函数
 * 3、面向对象进行操作数据库,相对于面向对象还有面向过程的编程方式,具体了解
 * http://blog.csdn.net/zithan/article/details/6733419
 */

导航link

include ('db.php');

function getCatePath($cid,&$result = array()){

    $sql = "select * from deepcate WHERE id = $cid";

    //面向对象编程
    global $mysqli;
    $re = $mysqli->query($sql);
    //从结果集中取出一条数据为 关联数组
    $row = mysqli_fetch_assoc($re);
    if ($row){
        $result[] = $row;
        getCatePath($row['pid'],$result);

    }

    //ksort() 函数用于对数组单元按照键名从低到高进行排序。
    //krsort() 函数用于对数组单元按照键名从高到低进行排序。
    krsort($result);
    return $result;

    //面向过程编程
//    $re = mysqli_query($mysqli,$sql);
//    print_r($re);die;
//    $row = mysqli_fetch_assoc($re);
//    print_r($row);die;

}
    function displayCatePath($cid,$url = "cate.php?cid="){
        $res =  getCatePath($cid);
        $str = '';
        print_r($res);
        foreach ($res as $k=>$v){
            $str.= "{$v['catename']}>";
        }
        return $str;
    }
    echo displayCatePath(10,'cate.php?page=1&id=');
无限级分类:下拉列表、导航LINK_第1张图片
a标签.png

DEMO:https://git.oschina.net/yjhyjh/wuxianjifenlei.git

你可能感兴趣的:(无限级分类:下拉列表、导航LINK)