Use from a PHP script:
include 'sms_parse.php';
//SEND SMS
hdev_sms::api_id("Your Api ID");
hdev_sms::api_key("Your Api Key");
$msg = hdev_sms::send("SENDER ID","TELL","MESSAGE");
var_dump($msg);//to get sms server responseinclude 'sms_parse.php';
//TOP UP
hdev_sms::api_id("Your Api ID");
hdev_sms::api_key("Your Api Key");
$result = hdev_sms::topup($tel,$amount);
var_dump($result);//to get sms server response*All of our response are objects for example to access the status in response you use
$status = $result->status;