📄 02_pass.php
字号:
<?php
include("../config.php");
include("../function.php");
session_start();
if($power_man!=$root)
header("location:err.php");
$cdel="cdel".$i;
$cdis="cdis".$i;
$udel="udel".$i;
$udis="udis".$i;
$power=${$cdel}.','.${$cdis}.','.${$udel}.','.${$udis};
$sql="update $table_auth set power='".$power."' where account='".$account[$i]."'";
$link=mysql_pconnect($host,$user,$password)||die("can not link mysql");
mysql_db_query($db,$sql)||die("can not run sql");
header("location:02.php?alert=1&account=$account[$i]");
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -