我嘗試發送短信remotly上的地址「smssheep.com」我將所有發佈字段和所有與職位,但它不會工作...遠程發送後的捲曲PHP
CODE:
$settings=array();
$settings["name"]="form1"; //name of form
$settings["no"]="0038268000000"; //mobile number
$settings["msg"]="TEST TEST MESAGE"; //message to send
$settings["submit"]="saveForm";
$settings["x_form_secret"]="**********";
$settings["idstamp"]="***************";
$url="http://smssheep.com/sendsms.php";
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $settings);
curl_exec($ch);
PHP輸出任何錯誤?你有沒有檢查cURL用curl_error()返回的錯誤? – Nelson
沒有PHP錯誤,它在cURL中,但無法找出什麼是問題...總是得到消息「您的消息已被處理!」 ...和我提交所有隱藏的字段 –