<?php
 
/*
 
* Get API key and Sender ID from 
 
* http://springedge.com 
 
* Copy php-send-sms-code.php in same directory
 
*/
 
    include 'php-send-sms-code.php';
 
    $sendsms=new sendsms("1i6xxxxxxxxxxxxxx", "BUxxxx");
 
    $sendsms->send_sms("99xxxxxxxx", "test sms");
 
 
?>
 
 |