Ignore:
Timestamp:
2007/03/28 13:01:38 (17 years ago)
Author:
uehara
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu/html/test/uehara/test.php

    r5 r11982  
    22require_once("../../require.php"); 
    33 
    4 $test= "eee<{assign_product_id}>aaaa"; 
    5 $test = ereg_replace("<{assign_product_id}>", "test", $test); 
    6 echo $test; 
     4$objQuery = new SC_Query(); 
     5 
     6$objQuery->begin(); 
     7$arrCustomerMail = $objQuery->getAll(" 
     8UPDATE dtb_customer 
     9SET mailmaga_flg = ( 
     10SELECT mail_flag 
     11FROM dtb_customer_mail 
     12WHERE dtb_customer.email = dtb_customer_mail.email 
     13)"); 
     14$objQuery->commit(); 
     15 
    716?> 
Note: See TracChangeset for help on using the changeset viewer.