Skip to main content

How to Integrate SMS API's with PHP?





<?php
$message "Happy Coding..A Test Message to Check API";$students "9999999999" //your mobile number to test$msg urlencode($message);
      
 $url="http://www.bulksmsapps.com/api/apibulkv2.aspx?apikey=XXX-XXXX-XXXX-XXX-XXXXXXXX&sender=XXXXX&number=".$students."&message=".$msg;
$curl_handle=curl_init();curl_setopt($curl_handle,CURLOPT_URL,$url);curl_setopt($curl_handle,CURLOPT_RETURNTRANSFER,1); curl_setopt($curl_handleCURLOPT_FOLLOWLOCATIONfalse);set_time_limit(0);$response curl_exec($curl_handle);err curl_error($curl_handle);curl_close($curl_handle);
if ($err) {
    echo "cURL Error #:" $err;
} else {
    echo $response;
}?>

Comments

  1. Get ready SMS PHP API or Bulk SMS API PHP Gateway Integration Source Code/Script to Integrate into your website, software or web application. MsgClub PHP APIs helps to send verification code or OTP, Transactional & Promotional SMS from your PHP based application automatically.

    ReplyDelete
  2. This blog is so informative for providing a valuable information about Bulk SMS API.

    ReplyDelete
  3. API integration stands from Application Program Interface. It helps in the communication of two applications through SMS API that is integrated SMS.SMS API integration enables to connect to us easily for any solution and service easily. Saudi Bulk SMS service of SMS API has simplified the communication between two servers one can easily share any content or data through Integrated SMS

    ReplyDelete
  4. Branded SMS Marketing is one among the foremost reliable systems used lately to form outbound access to customers. The needs that information carries are mostly short, succinct and are likely to be read by the purchasers.

    ReplyDelete
  5. The best promotional sms software

    and SMS marketing software for lead generation. Get a free mass texting

    software demo with customer ...

    ReplyDelete
  6. Hi,Thank you for the information blog. send personalized SMS to customers around the world get Detailed analytics and reports. Just start your Bulk SMS Campaign and own business with powerful solutions without free DLT registration.

    ReplyDelete

Post a Comment

Popular posts from this blog

Send Email(with subject,body,attachment) using SSMTP through Terminal in linux?

1.Install ssmtp as              $ sudo apt-get update && sudo apt-get install ssmtp 2.Configure smtp file by editing the following file as, $ sudo gedit /etc/ssmtp/ssmtp.conf Update file with the following: AuthUser=Sendermail@gmail.com AuthPass=SenderPasswordforGMAIL FromLineOverride=YES mailhub=smtp.gmail.com:587 UseSTARTTLS=YES Now ssmtp.conf file should look like as the following one, AuthUser=Sendermail@gmail.com AuthPass=SenderPasswordforGMAIL # # Config file for sSMTP sendmail # # The person who gets all mail for userids < 1000 # Make this empty to disable rewriting. root=postmaster # The place where the mail goes. The actual machine name is required no # MX records are consulted. Commonly mailhosts are named mail.domain.com mailhub=smtp.gmail.com:587 # Where will the mail seem to come from? #rewriteDomain= # The full hostname hostname=tele-desktop118 # Are users allowed to set their own From: address? # Y

Backup (or) Download MYSQL Database as a zip file Using PHP

NOTE:Please change below credentials  with respect to your Database and Run the file. <?php define ( "DB_USER" ,  'DatabaseUSERNAME' ); define ( "DB_PASSWORD" ,  'DatabasePASSWORD' ); define ( "DB_NAME" ,  'DatabaseNAME' ); define ( "DB_HOST" ,  'localhost' ); define ( "BACKUP_DIR" ,  'myphp-backup-files' );  // Comment this line to use same script's directory ('.') define ( "TABLES" ,  '*' );  // Full backup //define("TABLES", 'table1, table2, table3'); // Partial backup of required tables define ( "CHARSET" ,  'utf8' ); define ( "GZIP_BACKUP_FILE" ,  true );   // Set to false if you want plain SQL backup files (not gzipped) class  Backup_Database {     var  $host ;     var  $username ;     var  $passwd ;     var  $dbName ;     var  $charset ;     var  $conn ;     var  $backupDir ;     var  $backupFile ;     var  $

Upload and Retrieve an image from database

/*Create table in sql:*/ CREATE TABLE `images` ( `id` int(11) NOT NULL AUTO_INCREMENT, `image` longblob NOT NULL, `created` datetime NOT NULL, PRIMARY KEY (`id`) ); /*Uploading an image to Database*/ <?php if ( isset ( $_POST [ "submit" ])){ $check = getimagesize ( $_FILES [ "image" ][ "tmp_name" ]); if ( $check !== false ){ $image = $_FILES [ 'image' ][ 'tmp_name' ]; $imgContent = addslashes ( file_get_contents ( $image )); $dbHost = 'localhost' ; $dbUsername = 'root' ; $dbPassword = 'root' ; $dbName = 'sample' ; //Create connection and select DB $db = new mysqli( $dbHost , $dbUsername , $dbPassword , $dbName ); // Check connection if ( $db -> connect_error ){ die ( "Connection failed: " . $db -> connect_error ); } $dateTime = date ( "Y-m-d H:i:s" )