Index: temp/trunk/html/test/naka/recv.php
===================================================================
--- temp/trunk/html/test/naka/recv.php	(revision 7811)
+++ temp/trunk/html/test/naka/recv.php	(revision 7812)
@@ -14,5 +14,18 @@
 pclose($tmpResult);				// 	¥Ñ¥¤¥×¤òÊÄ¤¸¤ë
 
-gfDebugLog($result);
+$arrRet = lfGetPostArray($result);
+gfDebugLog($arrRet);
 
+//---------------------------------------------------------------------------------------------------------------------------------
+function lfGetPostArray($text) {
+	if($text != "") {
+		$text = ereg_replace("[\n\r]", "", $text);
+		$arrTemp = split("&", $text);
+		foreach($arrTemp as $ret) {
+			list($key, $val) = split("=", $ret);
+			$arrRet[$key] = $val;
+		}
+	}
+	return $arrRet;
+}
 ?>
