PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Utsav Handa   ClickATell_SMS_API   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example Usage
Class: ClickATell_SMS_API
Send SMS messages using ClickATell API
Author: By
Last change:
Date: 15 years ago
Size: 471 bytes
 

Contents

Class file image Download
<?php

 
/**
   * This library provides generic API for ClickATell SMS Service in an uniform way.
   */

require_once('class-clickatellsms-api.php');
$sms_obj = new ClickATellSMS('USERNAME', 'PASSWORD', 'API_ID', 'SENDER_ID');
$sms_obj -< sendSMS('NUMBER', 'MESSAGE');

?>