Changeset 13482


Ignore:
Timestamp:
2007/05/28 10:54:59 (17 years ago)
Author:
nakanishi
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/admin/mail/index.php

    r13481 r13482  
    412412     
    413413    if(DB_TYPE == "mysql"){ 
    414        $dtb_send_history["send_id"] = $objQuery->nextval('dtb_send_history', 'send_id'); 
     414        $dtb_send_history["send_id"] = $objQuery->nextval('dtb_send_history', 'send_id'); 
    415415    } 
    416416     
     
    419419         
    420420        foreach( $search_data as $line ){ 
     421             
    421422            $dtb_send_customer = array(); 
    422423            $dtb_send_customer["customer_id"] = $line["customer_id"]; 
    423424            $dtb_send_customer["send_id"] = $dtb_send_history["send_id"]; 
    424425            $dtb_send_customer["email"] = $line["email"]; 
    425             $dtb_send_customer["name"] = $line["name01"] . " " . $line["name02"]; 
    426                      
    427              
     426            $dtb_send_customer["name"] = $line["name01"] . " " . $line["name02"];                    
     427            print_r($dtb_send_customer); 
    428428            if(DB_TYPE=="pgsql"){ 
    429429                $conn->autoExecute("dtb_send_customer", $dtb_send_customer );                    
Note: See TracChangeset for help on using the changeset viewer.