为了账号安全,请及时绑定邮箱和手机立即绑定

添加管理员的错误。。。

<?php

require_once '../include.php';

$act=$_REQUEST['ast'];

if($act=="logout"){

logout();

}elseif($act=="addAdmin"){

$mes=addAdmin();

}

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<title>无标题文档</title>

</head>

<body>

<?php

if($mes){

echo $mes;

}

?>

</table>

</form>

</body>



function logout(){

$_SESSION=array();

if(isset($_COOKIE[session_name()])){

setcookie(session_name(),"",time()-1);

}

if(isset($_COOKIE['adminId'])){

setcookie("adminId","",time()-1);

}

if(isset($_COOKIE['adminName'])){

setcookie("adminName","",time()-1);

}

session_destroy();

header("location:login.php");

}


function addAdmin(){

$arr=$_POST;

if(insert("imooc_admin",$arr)){

$mes="添加成功!<br/><a href='addAdmin.php'>继续添加</a>";

}else{

$mes="添加失败!<br/><a href='addAdmin.php'>重新添加</a>";

}

return $mes;

}



5482a4930001b83905000164.jpg

正在回答

1 回答

这个不是错误,是注意,你可以通过配置PHP配置文件中error_reporting=E_ALL&~E_NOTICE解决这个问题,之后重启服务器

^-^...

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
手把手教你实现电商网站后台开发
  • 参与学习       117283    人
  • 解答问题       1999    个

手把手教你用PHP搭建电子商务平台,由浅入深教你搭建电商系统

进入课程

添加管理员的错误。。。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信