2016-02-06 12 views
2

我能够通过PHP发送短信,但我不得不提到手机号码,每次我想用相同的脚本我可以发送短信到存储在我的数据库中的条目。 这里是我的代码:我如何发送短信到我的数据库条目

<?php 

//Your authentication key`enter code here` 
$authKey = "API key"; 

//Multiple mobiles numbers separated by comma 
$mobileNumber = "+919425386214"; 

//Sender ID,While using route4 sender id should be 6 characters long. 
$senderId = "Social"; 

//Your message to send, Add URL encoding here. 
$message = urlencode("Test message"); 

//Define route 
$route = "04"; 
//Prepare you post parameters 
$postData = array(
    'authkey' => $authKey, 
    'mobiles' => $mobileNumber, 
    'message' => $message, 
    'sender' => $senderId, 
    'route' => $route 
); 
if (isset($_POST['submit'])) 
{ 

//API URL 
$url="https://control.msg91.com/api/sendhttp.php"; 

// init the resource 
$ch = curl_init(); 
curl_setopt_array($ch, array(
    CURLOPT_URL => $url, 
    CURLOPT_RETURNTRANSFER => true, 
    CURLOPT_POST => true, 
    CURLOPT_POSTFIELDS => $postData 
    //,CURLOPT_FOLLOWLOCATION => true 
)); 


//Ignore SSL certificate verification 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 


//get response 
$output = curl_exec($ch); 

//Print error if any 
if(curl_errno($ch)) 
{ 
    echo 'error:' . curl_error($ch); 
} 

curl_close($ch); 

echo $output; 
} 
?> 

请帮助,这样我可以发送短信给我的客户接触的人没有。存储在我的数据库

+0

我想你想在这个变量'$ mobileNumber'的动态数据?是否在这个变量中用逗号分隔数字? –

+0

是的,我想要的,但这个变量的值将存储在我的数据库中的数字 –

+0

ISHAN感谢标记,我希望你的问题得到解决。 –

回答

1

你需要做一些查询代码做到这一点,你的帮助示例代码: -

<?php 
error_reporting(E_ALL); 
ini_set('display_errors',1); 
$mobileNumber = ''; 
$conn = mysqli_connect('localhost','root','','database name') or die (mysqli_error()); // give connection credentials here 

if($conn){ 
$query = "Select mobile_number From User"; // change table name and column name accordingly. 

$result = mysqli_query($conn,$query) or die(mysqli_error($conn)); 
if(mysqli_num_rows($result) > 0){ 
    while($row = mysqli_fetch_assoc($result)){ 
     $mobileNumber .= $row['mobile_number'].','; 
    } 
} 

} 
$mobileNumber = substr($mobileNumber,0,strlen($mobileNumber)-1); // now you have all mobile numbers in , seperated form in this variable 

注: - 您可以在当前的PHP代码添加此代码,做相应的改变,你会得到你想要的输出。

+0

如何限制手机号码为100,然后循环如果在数据库中有10,000个手机号码?使用@Anant代码选择所有数字。 –