
This page is used to test the proper operation of the HTTP server after it has been installed. If you can read this page it means that the HTTP server installed at this site is working properly.
PHP script so you can send SMS
Instal PHPSMS.APK
Download at Google Playstore or http://sms.indositus.com/phpsms.apk
How to SMS sending from PHP Script
< ? php
function sendsms($to,$msg){
//init SMS gateway, look at android SMS gateway
$idmesin="your ID Mesin";
$pin="your PIN";
// create curl resource
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, "https://sms.indositus.com/sendsms.php?idmesin=$idmesin&pin=$pin&to=$to&text=$msg");
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$output = curl_exec($ch);
// close curl resource to free up system resources
curl_close($ch);
return($output);
}
$sending=sendsms("082137980096","hello guest");
?>
You are free to use the images below on Linux powered HTTP servers. Thanks for using CentOS-WebPanel!