參數 $url = "www.google.com.tw"; $header = array( "content-type: application/x-www-form-urlencoded", "charset=UTF-8" ); // curl 初始化和設定 ... <看更多>
php curl參數 在 PHP cURL Tutorial and Example - YouTube 的推薦與評價
A simple PHP cURL tutorial and example. Learn how to use curl_init, curl_setopt, and curl_execute. Also learn ... ... <看更多>
php curl參數 在 [請益] 如何用curl 傳送post後導向- 看板PHP 的推薦與評價
我現在要做金流介接
A.php 是form
submit後action="" 回來原頁面A.php
先存post的值到資料庫
再用curl post到test.php (使用者填信用卡資料)
$test1=$_POST['email'];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://locathost/mobile/test.php");
curl_setopt($ch, CURLOPT_POST, 1);
//=====我要傳到test.php的資料======
curl_setopt($ch, CURLOPT_POSTFIELDS, "email=$test1");
//=================================
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_exec ($ch);
curl_close ($ch);
header('Location:test.php');
為什麼這樣寫完參數會帶不過去呢??
有請板上大哥解決
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 1.34.148.102
但是要傳完自動轉址 轉去後剛好接收到post顯示在信用卡資料填寫頁面
※ 編輯: sing10407 來自: 1.34.148.102 (07/30 15:48)
A是form
POST給自己(A.php),然後先存進資料庫後在用curl post給test.php
test.php用$_POST接收顯示購物資訊在頁面上(test.php)
※ 編輯: sing10407 來自: 1.34.148.102 (07/30 16:34)
然後test.php顯示他剛剛選的產品(用$_POST接收)以及價格
test.php純粹就$_POST收參數
※ 編輯: sing10407 來自: 1.34.148.102 (07/30 18:43)
各位大大解答
※ 編輯: sing10407 來自: 114.36.252.92 (07/30 20:58)
只是說金流介接是要送參數給金流公司金流的系統 所以只能送參數(post)到對方的網站
(就是這裡的test.php) 然而要選產品我還想帶不同的產品名稱+對應價格 所以才來找
cURL看看能不能解
感謝大大熱心回答
※ 編輯: sing10407 來自: 114.36.252.92 (07/30 21:20)
※ 編輯: sing10407 來自: 114.36.252.92 (07/30 23:13)
我發現這樣就可以做很多事了~
<body onload="document.aForm.submit()">
<form method="post" action="test.php" name="aForm">
廠商代碼: <input type="hidden" name="xxx" value="xxx"/>
</form>
</body>
※ 編輯: sing10407 來自: 114.36.252.92 (07/30 23:35)
※ 編輯: sing10407 來自: 1.34.148.102 (07/31 13:01)
... <看更多>