if($act=="add"){
/**
* @access public
* @param array $types 数组 这里的数组要传引用&
* @param interal $pid 所属的分类上层分类id
* @param int $path 分类层 默认从0开始每次循环加一
* @return array();
*/
function getTypes(&$types=array(),$pid=0,$path=0){
$sql = "select * from `type` where type_p_id = $pid";
$res = mysql_query($sql);
while($row = mysql_fetch_assoc($res)){
$str = "";
for($i=0;$i<$path;$i++){
$str.=" ";
}
$row['new_type_name'] = $str.$row['type_name'];
$types[] = $row;
getTypes($types,$row['type_id'],($path+1));
}
return $types;
}
//获取分类 调用函数
getTypes($types);
//获取列表根据 分类层进行排序
$sql1 = "select * from type order by type_id";
$sqll = mysql_query($sql1);
?>
<form method="post" action="?ac=addok">
新分类名称: <input type="text"><br/>
当前分类:<select >
<option value="0">顶级分类</option>
<?php
//循环这个数组将分类正确输出
for($i=0;$i<count($types);$i++){
?>
<option value="<?php echo $types[$i]['type_id']?>"><?php echo $types[$i]['new_type_name']?></option>
<?php
}
?>
</select><br />
<input type="submit" value="添加"/>
</form>
<?php
}elseif($act == "addok"){
$type_name = $_POST['type_name'];
$type_id = $_POST['type_id'];
$sql = "insert into `type`(type_name,type_p_id) values ('$type_name','$type_id')";
$res = mysql_query($sql);
if(mysql_insert_id()>0){
echo "<script>location.href='two.php?act=list'</script>";
}else{
echo "<script>alert('添加失败');</script>";
}
}elseif($act == "list"){
//获取列表根据 分类层进行排序
$sql = "select * from type order by concat(type_id,type_p_id)";
$res = mysql_query($sql);
?>
<table>
<tr><td>id</td><td>分类名</td><td>path路径</td><td>操作</td></tr>
<?php
while($arr = mysql_fetch_assoc($res)){?>
<tr>
<td><?php echo $arr['type_id']?></td>
<td><?php echo $arr['type_name']?></td>
<td><?php echo $arr['type_p_id']?></td>
<td ><a href="?ac=edit&type_id=<?php echo $arr['type_id'];?>">编辑</a> |
<a href="?ac=del&type_id=<?php echo $arr['type_id'];?>">删除</a></td>
</tr>
<?php
}
?>
</table>
<input type="button" value="添加" >
<?php
}elseif($act == "del"){
/***
这里要删除大分类的时候必须要删除该大分类下的子分类
所以这里开始mysql事务 mysql 事务开启的方式 事务详细说明请参考
*/
mysql_query("SET AUTOCOMMIT=1");//开启事务
$type_id = $_GET['type_id'];
//删除该分类
$sqlone = "delete from `type` where type_id=$type_id";
//删除该分类下的子分类
$sqltwo = "delete from `type`where type_p_id=$type_id";
$res1 = mysql_query($sqlone);
$res2 = mysql_query($sqltwo);
if($res1 && $res2)
{
mysql_query("COMMIT");
echo "<script>location.href='two.php?act=list'</script>";
}else{
mysql_query("ROLLBACK");
echo "<script>alert('删除失败');</script>";
}
}
?>
type表:
下面是效果图
写的确实不怎么样啊 还望大家见谅。
您可能感兴趣的文章: