Hi,
I am working on this function.buts its not sending text message($msg) to user($to)
function sendSMS($mobile, $msg, $sender, $sendPass, $sendID)
{
$msg=urlencode($msg);
$ch = curl_init();
$url="abksms.com/pushsms.php?username=cs&password=6117&sender=STIA&to=$mobile&message=$msg";
//echo $url;
//$url=urlencode($url);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1)or die("error1");
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
$data = curl_exec($ch);
curl_close($ch);
return $data;
//return substr($data,0,1);
}