Monday, 4 May 2015

send SMS with php in mobile

       


First thing you need is SMS API Provider


$api = new TextMagicAPI(array(
    "username" => "your_use_rname",
    "password" => "your_API_password", 
));

$text = "Hi how r u";
$phones = array(9990283246);
$is_unicode = true;


$api->send($text, $phones, $is_unicode)

No comments:

Post a Comment