| Revision 7059,
869 bytes
checked in by naka, 20 years ago
(diff) |
|
* empty log message *
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | require_once("../../require.php"); |
|---|
| 4 | require_once(DATA_PATH . "module/Request.php"); |
|---|
| 5 | |
|---|
| 6 | $order_url = "http://beta.epsilon.jp/cgi-bin/order/receive_order3.cgi"; |
|---|
| 7 | |
|---|
| 8 | $arrData = array( |
|---|
| 9 | 'order_number' => '93963923', |
|---|
| 10 | 'st_code' => '10100-0000-00000', |
|---|
| 11 | 'memo1' => '»î¸³ÍÑ¥ª¡¼¥À¡¼¾ðÊó', |
|---|
| 12 | 'user_mail_add' => '[email protected]', |
|---|
| 13 | 'item_name' => '¥×¥ê¥ó¥¿', |
|---|
| 14 | 'contract_code' => '13094800', |
|---|
| 15 | 'user_name' => 'naka', |
|---|
| 16 | 'process_code' => '2', |
|---|
| 17 | 'mission_code' => '1', |
|---|
| 18 | 'item_price' => '34800', |
|---|
| 19 | 'xml' => '0', |
|---|
| 20 | 'item_code' => 'abc12345', |
|---|
| 21 | 'memo2' => '', |
|---|
| 22 | 'user_id' => 'test' |
|---|
| 23 | ); |
|---|
| 24 | |
|---|
| 25 | $req = new HTTP_Request($order_url); |
|---|
| 26 | $req->setMethod(HTTP_REQUEST_METHOD_POST); |
|---|
| 27 | |
|---|
| 28 | $arrSendData = array(); |
|---|
| 29 | $req->addPostDataArray($arrData); |
|---|
| 30 | |
|---|
| 31 | if (!PEAR::isError($req->sendRequest())) { |
|---|
| 32 | $response = $req->getResponseBody(); |
|---|
| 33 | } else { |
|---|
| 34 | $response = "err"; |
|---|
| 35 | } |
|---|
| 36 | |
|---|
| 37 | sfPrintR($response); |
|---|
| 38 | |
|---|
| 39 | $req->clearPostData(); |
|---|
| 40 | |
|---|
| 41 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.