Changeset 12072


Ignore:
Timestamp:
2007/04/03 23:50:18 (17 years ago)
Author:
uehara
Message:
 
File:
1 edited

Legend:

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

    r12066 r12072  
    11<?php 
    2 require_once("../../require.php"); 
    32 
    4 echo "test!!"; 
     3test('エコー'); 
    54 
    6 $objQuery = new SC_Query(); 
     5function test($echo) { 
     6    echo $echo; 
     7} 
    78 
    8 $objQuery->begin(); 
    9 $arrCustomerMail = $objQuery->getAll(" 
    10 UPDATE dtb_customer 
    11 SET mailmaga_flg = ( 
    12 SELECT mail_flag 
    13 FROM dtb_customer_mail 
    14 WHERE dtb_customer.email = dtb_customer_mail.email 
    15 )"); 
    16 $objQuery->commit(); 
    179 
    1810?> 
Note: See TracChangeset for help on using the changeset viewer.