⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delmail.php

📁 十大精典PHP项目开发全程案例+代码
💻 PHP
字号:
<?php session_start();
$hostname=$_SESSION[host];
$username=$_SESSION[user];
$userpwd=$_SESSION[pwd];
if(!$mbox=@imap_open("$hostname","$username","$userpwd")){
   echo "<script>alert('登录超时,请重新登录!');history.back();</script>";
   exit;
} 
$i=0;
while(list($name,$value)=each($_POST)){
  if(is_numeric($value)==true){
        $i+=$value;
		if(!@imap_delete($mbox,$value)){
		
		  echo "<script>alert('删除失败!');history.back();</script>";
		  exit;
		 
		}
  }		
}
if($i==0){
 echo "<script>alert('请选择要删除的邮件!');history.back();</script>";
 imap_close($mbox);
 exit;
}else{
  imap_expunge($mbox);
  imap_close($mbox);
  echo "<script>window.location.href='indexs.php?lmbs=删除'</script>";
}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -