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);
    }

Recommended Answers

All 3 Replies

Does it give any error message?

yes twiss.It is abksms.com
Its showing correct value in $url
When we execute this $url value in the browswr,its working i.e. sending sms.
but all the code after $url not working

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.