Index: temp/trunk/html/test/naka/shopcgi.php
===================================================================
--- temp/trunk/html/test/naka/shopcgi.php	(revision 7740)
+++ temp/trunk/html/test/naka/shopcgi.php	(revision 7741)
@@ -38,4 +38,34 @@
 */
 
+$order_url = "http://mod-i.ccsware.net/ohayou/EntryTran.php";
+
+$arrData = array(
+	'OrderId' => '2006-11-08-12-43-21-936',
+	'TdTenantName' => '',
+	'TdFlag' => '',
+	'ShopId' => 'test',
+	'Amount' => '0',
+	'ShopPass' => 'test',
+	'Currency' => '',
+	'Tax' => '0',
+	'JobCd' => 'CHECK',
+	'TenantNo' => 'TenantNo',
+);
+
+$req = new HTTP_Request($order_url);
+$req->setMethod(HTTP_REQUEST_METHOD_POST);
+		
+$arrSendData = array();
+$req->addPostDataArray($arrData);
+
+if (!PEAR::isError($req->sendRequest())) {
+	$response = $req->getResponseBody();
+} else {
+	$response = "";
+}
+$req->clearPostData();
+
+print($response);
+
 
 ?>
