Changeset 5196 for temp/trunk


Ignore:
Timestamp:
2006/09/20 10:11:06 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk/html
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/entry/index.php

    r5195 r5196  
    208208        $arrRegistMail["mail_flag"] = 6;  
    209209    } 
     210    $arrRegistMail["update_date"] = "now()"; 
    210211     
    211212    // Èó²ñ°÷¤Ç¥á¥ë¥Þ¥¬ÅÐÏ¿¤·¤Æ¤¤¤ë¾ì¹ç 
    212213    if ($mailResult == 1) {      
    213         $objConn->autoExecute("dtb_customer_mail", $arrRegistMail, "email = '" .addslashes($arrRegistMail["email"]). "'");           
     214        $objQuery->update("dtb_customer_mail", $arrRegistMail, "email = '" .addslashes($arrRegistMail["email"]). "'");           
    214215    } else {                //¡¡¿·µ¬ÅÐÏ¿¤Î¾ì¹ç 
    215         $objConn->autoExecute("dtb_customer_mail", $arrRegistMail);      
     216        $arrRegistMail["create_date"] = "now()"; 
     217        $objQuery->insert("dtb_customer_mail", $arrRegistMail);      
    216218    } 
    217219    $objConn->query("COMMIT"); 
  • temp/trunk/html/regist/index.php

    r4608 r5196  
    8686    $objQuery->update("dtb_customer", $arrRegist, $where, array($array["id"])); 
    8787     
    88     $ret = $objQuery->getLastQuery(false); 
    89      
    9088    /* ¹ØÆþ»þÅÐÏ¿¤Î¾ì¹ç¡¢¤½¤Î²ó¤Î¹ØÆþ¤ò²ñ°÷¹ØÆþ¤È¤ß¤Ê¤¹¡£ */ 
    9189    // ²ñ°÷¾ðÊó¤ÎÆÉ¤ß¹þ¤ß 
     
    9391    $customer = $objQuery->select("*", "dtb_customer", $where1, array($secret)); 
    9492    // ½é²ó¹ØÆþ¾ðÊó¤ÎÆÉ¤ß¹þ¤ß 
    95 //  $where2 = "member_check = 1 AND order_email = ? AND password = ?"; 
    96 //  $order_temp_id = $objQuery->get("dtb_order_temp", "order_temp_id", $where2, array($customer[0]['email'], $customer[0]['password'])); 
    9793    $order_temp_id = $objQuery->get("dtb_order_temp", "order_temp_id"); 
    9894    // ¹ØÆþ¾ðÊó¤Î¹¹¿· 
Note: See TracChangeset for help on using the changeset viewer.