Hi, I am working on this curl function.The problem is it is not executing.
1)When we use $URL value directly in browser its working fine & SMS is going to number.
2)When i am trying to call a function having some curl function its not working.
Need help.
Thanks
<?php
function sendSMS($mobile, $msg, $sender, $sendPass, $sendID)
{
$msg=urlencode($msg);
$ch = curl_init();
$url="abksms.com/pushsms.php?username=cs&password=6117&sender=SHRDATIA&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);
}
// call function on form submition
sendSMS("9210485810","Hi! Type Your Message Here","ks","6917","SHRDATIA");
//pass varaible
sendSMS($mobileno, $msg, $user, $pass, $senderid);
?>