Interested with Bulk SMS Philippines? Contact Us HERE

Sending Bulk SMS With PHP Code

How to Send Bulk SMS With PHP Code

Have you ever thought about sending SMS by just enter an URL? iSMS Philippines has enhanced our services whereby you can now use PHP coding to initiate HTTP communication between our SMS System and your website.

To understand more about our iSMS Philippines API Key features, please visit Developer API page. All available features and configurations will be displayed at the iSMS Philippines Developer API page.

Sending SMS via URL parameters

Step 1: Copy the script below to your browser

http://isms.com.my/isms_send.php?un=isms&pwd=isms123&dstno=60129007788&msg=Hi%20John.&type=1&sendid=12345

Step 2: Replace the username, password and destination number (including full country code) with your account information

How to Send SMS With PHP Code

Sending SMS via PHP script

Step 1: Use the sample PHP code to generate link

$sendlink = "http://www.isms.com.my/isms_send.php?un=".urlencode($username)."&pwd=".urlencode($password)."&dstno=".$dstno."
&msg=".urlencode($msg)."&type=".$type."&sendid=".$senderid; fopen($sendlink, "r");

Step 2: Replace the username, password and destination number (including full country code) with your account information

You can now send sms through your application or website integrated with the PHP code.