 |
Version: 4.1.0
Released: 3/7/2007
The PHP SMS SDK provides easy, high-level control of the Simplewire wireless
text-messaging platform. The PHP SMS SDK was designed be to be as developer-friendly
as possible by hiding the intricacies of the XML format required to communicate with the
Simplewire WMP (Wireless Message Protocol) servers. The PHP SMS SDK makes it
possible to send an SMS message off with as little as two lines of code.
The PHP SMS SDK provides an easy way to send SMS text-messages in the PHP
(Hypertext Preprocessor) scripting language. On Unix or Linux systems, the SDK
is a wrapper to Simplewire's Shared Object SMS SDK. On Windows platforms, the
ActiveX SMS SDK is used within the PHP scripting language. Thus, you can use
it in nearly any PHP programming environment. PHP applications will execute quickly
with the powerful Shared Object or ActiveX SMS SDK's running in the background.
|
 |
Download
|
 |
Examples
Quick Start for Unix/Linux
// Create SMS Object
$sms = create_sms();
// Set Message Properties
$sms->msgPin = "+11005101234";
$sms->msgFrom = "Demo";
$sms->msgCallback = "+11005551212";
$sms->msgText = "Hello World From Simplewire!";
// Send Message
msg_send( &$sms );
|
|
|
|