Good Day to all of you. I have a problem in Chikka SMS API I downloaded the script from github and I tried to run it and it was successful. I received the message but the problem is spaces and other characters are encoded.
This is the code that I used
<?php
include('ChikkaSMS.php');
$clientId = 'xxxxx';
$secretKey = 'xxxxxx';
$shortCode = 'xxxxxx';
$chikkaAPI = new ChikkaSMS($clientId,$secretKey,$shortCode);
$response = $chikkaAPI->sendText('UNIQUEMESSAGEID', 'MOBILENUMBER', 'YOURMESSAGE');?>
From: https://github.com/mojics/chikka_sms_api