Index: branches/dev/html/mobile/nonmember/index.php
===================================================================
--- branches/dev/html/mobile/nonmember/index.php	(revision 12727)
+++ branches/dev/html/mobile/nonmember/index.php	(revision 12728)
@@ -365,5 +365,5 @@
 //            }
          
-            lfRegistData($objPage->tpl_uniqid); 
+            lfRegistDataTemp($objPage->tpl_uniqid,$objPage->arrAddr[0]); 
             
             lfCopyDeliv($objPage->tpl_uniqid, $_POST);
@@ -406,4 +406,30 @@
     $sqlval['customer_id'] = '0';
     $sqlval['order_name01'] = $objPage->arrAddr[0]['name01'];
+          
+    print_r($sqlval);
+    // ´ûÂ¸¥Ç¡¼¥¿¤Î¥Á¥§¥Ã¥¯
+    $objQuery = new SC_Query();
+    $where = "order_temp_id = ?";
+    $cnt = $objQuery->count("dtb_order_temp", $where, array($uniqid));
+    // ´ûÂ¸¥Ç¡¼¥¿¤¬¤Ê¤¤¾ì¹ç
+    if ($cnt == 0) {
+        $sqlval['create_date'] = 'Now()';
+        $objQuery->insert("dtb_order_temp", $sqlval);
+    } else {
+        $objQuery->update("dtb_order_temp", $sqlval, $where, array($uniqid));
+    }
+}
+
+function lfRegistDataTemp($uniqid,$array) {
+    global $objFormParam;
+    $arrRet = $objFormParam->getHashArray();
+    $sqlval = $objFormParam->getDbArray();
+    
+    // ÅÐÏ¿¥Ç¡¼¥¿¤ÎºîÀ®
+    $sqlval['order_temp_id'] = $uniqid;
+    $sqlval['order_birth'] = sfGetTimestamp($arrRet['year'], $arrRet['month'], $arrRet['day']);
+    $sqlval['update_date'] = 'Now()';
+    $sqlval['customer_id'] = '0';
+    $sqlval['order_name01'] = $array['name01'];
           
     print_r($sqlval);
