Index: temp/trunk/html/admin/contents/inquiry.php
===================================================================
--- temp/trunk/html/admin/contents/inquiry.php	(revision 5127)
+++ temp/trunk/html/admin/contents/inquiry.php	(revision 5185)
@@ -97,5 +97,5 @@
 				$question_id = $objQuery->nextval('dtb_question', 'question_id');
 			}
-			$conn->query("INSERT INTO dtb_question ( question, question_name, question_id ) VALUES (?, ?, ?)", $sql_val );
+			$conn->query("INSERT INTO dtb_question ( question, question_name, question_id, create_date, update_date) VALUES (?, ?, ?, now(), now())", $sql_val );
 			$objPage->MESSAGE = "ÅÐÏ¿¤¬´°Î»¤·¤Þ¤·¤¿";
 			
Index: temp/trunk/html/admin/contents/recommend.php
===================================================================
--- temp/trunk/html/admin/contents/recommend.php	(revision 4608)
+++ temp/trunk/html/admin/contents/recommend.php	(revision 5185)
@@ -50,5 +50,9 @@
 		$objPage->arrForm['creator_id'] = $_SESSION['member_id'];
 		$objPage->arrForm['update_date'] = "NOW()";
-		$conn->autoExecute("dtb_best_products", $objPage->arrForm );		
+		$objPage->arrForm['create_date'] = "NOW()";
+		
+		$objQuery = new SC_Query();
+		$objQuery->insert("dtb_best_products", $objPage->arrForm );
+//		$conn->autoExecute("dtb_best_products", $objPage->arrForm );
 	}	
 
