html
js
ajax,php代码
function region($parent_id,$region_type){ //region(0,北京市) $where = "where parent_id = $parent_id"; $sql = mysql_query("select * from rv_region $where"); //echo $where; while($re = mysql_fetch_row($sql)){ $arr[] = $re; } if($region_type =='1'){ $province .= ""; }else if($region_type =='2'){ $province .= ""; } foreach($arr as $k=>$val){ $province .= ""; } return $province;} $parent_id = $_GET['parent_id'];$region_type = $_GET['retion_type']; echo region($parent_id,$region_type);
三级联动mysql数据