一个程序下载的管理程序(四)_php基础
时间:2021-07-01 10:21:17
帮助过:4人阅读
//管理程序chang.php源代码如下:
session_start() ?>
if($session_power==""||$session_power<1)
{
header("location: ../message.php?redirect=default.php&message=你不是理员");
break;
}?>
if($step=="1")
{
if(!($rs=mysql_fetch_array(mysql_query("select * from download where id='".$id."'",$cn))))
echo "提取资料出错";
else
{
?>
修改资料
}
}
if($step=="2")
{
mysql_query("update download set title='".$title."', say='".$say."',url='".$url."',size='".$size."',type='".$type."' where id=".$id,$cn);
header("location:download.php?action=show&type=$type");
}
?>