
June 21st, 2010, 10:47 AM
|
|
Registered User
|
|
Join Date: Jun 2010
Posts: 3
Time spent in forums: 50 m 7 sec
Reputation Power: 0
|
|
SMS - Sending multipale SMS to multiple reciepients
Hi,
I am using kannel WAP gateway in Ubuntu 9.10, i want to send multiple messages to multiple recipients depending on on criteria determined for MySQL database using PHP script, how can i do this?
Here is the sample of the loop am using to send messages
PHP Code:
while($noma=mysql_fetch_array($rt)
{
$to=$noma['mobile'];
$msgText=$noma['message'];
$URL = "http://localhost:13013/cgi-bin/sendsms?username=".peter."&password=".malosha."&from=".GLOBAL_SENDER."&to=$to&text=".urlencode($msgText);
header('Location: '.$URL);
}
Please Help im am
|