php無限極分類

<?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('&nbsp;',$spac) . "|--" . $arr['termname'] . "</option>";
		getTree($arr['Id'],$spac);
		
	}
	
	return $str;
}
?>

效果如圖

wKiom1ZmqwrAvWUiAAAjiiu8wdk815.png

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章