我正在尝试使用循环发送多条短信,但它不起作用。如果只有一行要获取,那么它可以工作。
代码 :
while ($row = mysql_fetch_array($result)) {
$dealer_name = $row['dealer_name'];
$dealer_contact_no = $row['contact_no'];
$date = new DateTime($row['date']);
$date = $date->format('d-M-y');
$due_date = new DateTime($row['due_date']);
$due_date = $due_date->format('d-M-y');
//////////////////sms body
$msg .= 'Bill Payable-' . "%0A";
$msg .= 'Bill No:' . $row['ref_no'] . "%0A";
$msg .= 'Date:' . $date . "%0A";
$msg .= 'Total Amt:' . $row['total_amount'] . "%0A";
$msg .= 'Pending Amt:' . $row['pending_amount'] . "%0A";
$msg .= 'Due Date:' . $due_date . "%0A";
$msg .= 'Days:' . $row['days'] . "%0A";
$msg .= '-' . $sender_name;
$username = "abc";
$password = "1922345418";
$text = $msg;
$phones = $dealer_contact_no;
if (strlen($phones) == 10) {
header('Location:http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?username=' . $username . '&password=' . $password . '&sendername=NETSMS&mobileno=' . $phones . '&message=' . $text . '');
}
}