2 Star 2 Fork 4

Tody_Guo/php_issue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
doMailMon.php 903 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiahui.guo 提交于 2021-01-25 09:22 . add dpk list
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="86400">
<title>Mail更新监视后台程序</title>
</head>
<body>
<?php
include 'inc/conn.php';
include 'sendmail.php';
extract($_POST);
extract($_GET);
unset($_POST,$_GET);
$db = new mysql();
$db->query("select * from mail_tracking where `status`='Open'");
$num = $db->db_num_rows();
for($ii=0; $ii<$num; $ii++){
$row = $db->fetch_assoc();
$result="<br /><b>【问题追踪】:</b>${row['title']} <b>个</b>,<b>内容:</b><font color='blue'>".htmlspecialchars_decode($row['content'])."</font> ,<b>发送给:</b><font color='red'>${row['sendto']}</font><br />";
echo $result;
if(isset($mail) && $mail==1){ // only sent mail
SendMail("【问题追踪】${row['title']}", htmlspecialchars_decode($row['content']), $row['sendto']);
}
}
$db->close();
ftp_close($conn);
?>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/tody_guo/php_issue.git
git@gitee.com:tody_guo/php_issue.git
tody_guo
php_issue
php_issue
master

搜索帮助