您的位置:首页 > 编程语言 > PHP开发

php无限极分类

2015-12-08 18:04 701 查看
<?php
$conn = mysql_connect("localhost","root","1234");
mysql_select_db("laaho_caike");

$option = getTree(0);
$option = "<select name='term'>" . $option . "</select>";
echo $option;

function getTree($id,$spac=0) {
//static $str;
$spac = $spac + 2;
static $str;
$sql = "select * from videoterm where parent_id='" . $id . "'";
$res = mysql_query($sql);
//$arr = mysqli_fetch_assoc($res);

while ($arr=mysql_fetch_assoc($res)) {
$str .= "<option value=" . $arr['Id'] . ">" . str_repeat(' ',$spac) . "|--" . $arr['termname'] . "</option>";
getTree($arr['Id'],$spac);

}

return $str;
}
?>
效果如图


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: