2016-12-27 64 views
-2

我有一個鏈接,直接從瀏覽器,這是我們正在使用的短信網關。我試圖發送短信到多個數字使用PHP和MySQL作爲數據庫請幫我完整的代碼。使用PHP發送短信給多個號碼?

+0

你用Google搜索同樣的問題,也有alrady多個帖子,你可以找到。 – Rahul

+0

你的問題太廣泛了,你可以使用[curl](http://php.net/manual/en/book.curl.php)! –

+0

你將需要短信網關,它提供'REST Api'來使用php發送短信。 – DD77

回答

0

1.獲取陣列中的所有手機號碼 2.fetch並運行feach循環 3.put發送代碼。 例如:

$data = array('9940272758','213456789','8973557140'); 
foreach($data as $value){ 
    sendapi($value,"hi","somthing"); 
} 
+0

我的鏈接如下。請幫助我完整的代碼。 http://sms.indiabulksms.in/app/smsapi/index.php?key=987654321&campaign=0&routeid=8&type=text&contacts=999999999&senderid=smsing&msg=hello –

+0

感謝您的建議。我在使用您的建議代碼時遇到以下錯誤。 –

0

$result=$array(); //從數據庫中獲取這裏假定它是$result

foreach($result as $mbl){ 
    sendapi($mbl['phone'],$mbl['message']); 
} 
+0

我的鏈接如下。請幫助我完整的代碼。 http://sms.indiabulksms.in/app/smsapi/index.php?key=987654321&campaign=0&routeid=8&type=text&contacts=999999999&senderid=smsing&msg=hello –

+0

感謝您的建議。我在使用您的建議代碼時遇到以下錯誤 –