Interested with Bulk SMS Philippines? Contact Us HERE

Updating SMS Task Scheduler With PHP Code

Updating SMS Task Scheduler - PHP Code

iSMS Philippines API Key provides the flexibility to integrate SMS Scheduler to your existing system or applications. A simple example has been prepared to show you how to update your task schedulers with PHP coding. It will be good for your company system developers as they can use it as reference.

To understand more about our Bulk SMS Philippines API Key features, please visit our Developer API page.

All available features and configurations will be displayed at the Bulk SMS Philippines Developer API page. Integrate our sms task scheduler feature into your PHP application and enjoy our SMS services.

Please click below to find out about our other SMS Task Scheduler API examples.

How to update a PHP file

1. Create a PHP file with your chosen name.

2. After that, copy the entire PHP sample code below. Replace the username, password and mobile number with your account details.

  • username
  • password
  • your mobile number

Please go to SMS > Task Scheduler to view your Task Scheduler listing. .

Sample PHP Coding

<?php

$username = "isms";
$password = "isms123";
$dstno = 601xxxxxxx;
$msg = "testing message";
$det = "description";
$tr = "onetime";
$type = 1;
$senderid = "isms";
$date = "2013-12-12";
$hour = 12;
$min = 15;
$week = 1;
$month = 1;
$day = 1;
$scid = 56442 ; //scid get from the task scheduler you create
$action = "update";

$sendlink = "http://www.isms.com.my/isms_scheduler.php?un=".urlencode($username)."&pwd=".urlencode($password)."&dstno=".$dstno
."&msg=".urlencode($msg)."&det="
.urlencode($det)."&tr=".$tr
."&type=".$type."&sendid="
.urlencode($senderid)."&date=".$date."&hour="
.$hour."&min=".$min."&week=".$week
."&month=".$month."&day=".$day
."&scid=".$scid."&action=".$action;

fopen($sendlink, "r");

?>


HTTPS Result

3. Upload the file to your web server and then run it with your browser. A HTTPS request will be initiated by PHP coding and a new window will be prompted. The information below will be shown in the address bar of web browser.

https://www.isms.com.my/isms_scheduler.php?un=isms&pwd=isms&dstno=601xxxxxx&msg=hello&det=TEST&tr=onetime
&type=1&sendid=isms&date=2013-06-14&hour=08&min=15&week=1&month=1&day=1&scid=123456&action=update

Bulk SMS Philippines Task Scheduler with PHP

The information will be updated based on the attributes that you have've entered.