I am using below curl function for sending SMS.
if i put some spaces in message its not working.otherwise its working
<strong class="highlight">function</strong> sendSMS($mobile, $msg, $sender, $sendPass, $sendID)
{
$msg=urlencode($msg);
$ch = curl_init();
$url="http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?username=xxxxx&password=xxxxx&sendername=nix&mobileno=$phone&message=$message";
//echo $url;
//$url=urlencode($url);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
curl_close($ch);
return $data;
//return substr($data,0,1);
}