Changeset 5185 for temp/trunk/html/admin


Ignore:
Timestamp:
2006/09/19 22:00:59 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk/html/admin/contents
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/contents/inquiry.php

    r5127 r5185  
    9797                $question_id = $objQuery->nextval('dtb_question', 'question_id'); 
    9898            } 
    99             $conn->query("INSERT INTO dtb_question ( question, question_name, question_id ) VALUES (?, ?, ?)", $sql_val ); 
     99            $conn->query("INSERT INTO dtb_question ( question, question_name, question_id, create_date, update_date) VALUES (?, ?, ?, now(), now())", $sql_val ); 
    100100            $objPage->MESSAGE = "ÅÐÏ¿¤¬´°Î»¤·¤Þ¤·¤¿"; 
    101101             
  • temp/trunk/html/admin/contents/recommend.php

    r4608 r5185  
    5050        $objPage->arrForm['creator_id'] = $_SESSION['member_id']; 
    5151        $objPage->arrForm['update_date'] = "NOW()"; 
    52         $conn->autoExecute("dtb_best_products", $objPage->arrForm );         
     52        $objPage->arrForm['create_date'] = "NOW()"; 
     53         
     54        $objQuery = new SC_Query(); 
     55        $objQuery->insert("dtb_best_products", $objPage->arrForm ); 
     56//      $conn->autoExecute("dtb_best_products", $objPage->arrForm ); 
    5357    }    
    5458 
Note: See TracChangeset for help on using the changeset viewer.