完成删除时,id传入doaction页面后运行时报错
notice nodefine username,age.删除不需要传入这些值,但怎么逻辑认为我需要传啊?
然后我又去尝试添加用户功能,在还没写删除功能时,可以正常运行。但现在也报错notice undefine id。是我哪里没写完吗?我下了源代码没看出来
notice nodefine username,age.删除不需要传入这些值,但怎么逻辑认为我需要传啊?
然后我又去尝试添加用户功能,在还没写删除功能时,可以正常运行。但现在也报错notice undefine id。是我哪里没写完吗?我下了源代码没看出来
2016-03-02
switch ($act){
case 'addUser':
//添加用户操作
$username=$_POST['username'];
$username=$mysqli->escape_string($username);
$age=$_POST['age'];
$password=md5($_POST['password']);
$sql="INSERT user(username,password,age) VALUES('{$username}','{$password}','{$age}')";
$res=$mysqli->query($sql);
if($res){
$insert_id=$mysqli->insert_id;
echo "<script type='text/javascript'>
alert('添加成功,网站的第{$insert_id}位用户');
location.href='userlist_6.php';
</script>";
exit;
}else{
echo "<script type='text/javascript'>
alert('添加失败,重新添加');
location.href='addUser.php';
</script>";
exit;
}
case 'delUser':
$id=$_GET['id'];
echo '删除操作'.$id;
break;
}
举报