Aug 15, 2011 Send Text Messages with PHP. There are various free gateways, with varying degrees of successful delivery. I need to send sms to spain mobile? Please share the. Download PHP Code to Send SMS to Mobile for free. This PHP Code Will Allows You to Send SMS to Mobile via Website. This PHP Code Will Allows You to Send SMS to Mobile via Website or Localhost. You Can Use This Script to Intigrate SMS Functionality to Your Mobile Application, Web Application, Verification Process, Etc.
<?php//FILE: sms_api.php |
functionsendSMS($number, $message) { |
$url = 'example'; // Set your frontlinesms or frontlinecloud webconnection url here |
$secret = 'secret'; // Set the secret here |
$request = array( |
'secret' => $secret, |
'message' => $message, |
'recipients' => array(array( |
'type' => 'mobile', |
'value' => $number |
)) |
); |
$req = json_encode($request); |
$ch = curl_init( $url ); |
curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json')); |
curl_setopt( $ch, CURLOPT_POST, true ); |
curl_setopt( $ch, CURLOPT_POSTFIELDS, $req ); |
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); |
$result = curl_exec($ch); |
curl_close($ch); |
returnsplit(',',$result); |
} |
?> |
<?php//FILE: index.php |
include'sms_api.php'; |
$number = '+123456789'; |
$text = 'Hi There, how are you?'; |
$sms_api_result = sendSMS($number, $text); |
// Check if SMS was sent. The $sms_api_result boolean indicates whether the API call was successful. |
// You can replace the code below with custom handling logic |
if ($sms_api_result[0] 'OK') { |
// Ok, SMS received by the API |
echo'The SMS was sent.'; |
} |
else { |
// Failure, SMS was not sent |
// In this example we display the response to identify the error |
print_r($sms_api_result); |
} |
?> |
Hey, Thanks a lot for this demo, however, I get this error that is saying some functions you are using are deprecated. Could we maybe see how to fix these for future implementations, So I have read from the php documentation that they would prefer us to use the explode() method, i.e Thanks man |
HI: |
Note for anyone who comes across this, this example is using the deprecated WebConnection API. Frontline now does this through Activities and the Webhook api. Moto g5 unlock code free. Updated API docs are here:
Will push an update to this shortly. |
Updated, this should now work with our current FrontlineCloud code. |
The segment of code that reads should be updated to read The change to be made is on line 11, |
You're right @ivanoronee, have updated to reflect this. |
when i click submit, its returning Array ( [0] => ) can you please help |
when i click submit, its returning Array ( [0] => ) please assist |
anyone who knows how to sort this problem |