/home/mjc1/public_html/set.mail.process.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?
    
if(!isset($idx) || !isset($m)) exit;

    
$arrStr explode("---",base64_decode($idx));
    include(
"./manage/category/common.php");
    
    if(
$m == "cf") { // ¼ö½ÅÈ®ÀΠ¼¼±Ý°è»ê¼­
        
$query " UPDATE bill_publish SET isreceive = 1 WHERE idx = $arrStr[1]";
        
mysql_query($query);
    } else if(
$m == "ml") { // ¼ö½ÅÈ®ÀΠ¸ÞÀÏ
        
$query " UPDATE mailing_history SET mh_opencount = mh_opencount + 1 WHERE mh_seq = $arrStr[1]";
        
mysql_query($query);
    }
?>