Hello people,
First wish to say thanks for all the support.
What i now wish to find out is how can i have the balance after sending a message from my website show on screen. I am currently using the simple code below for sending SMS.
Will be happy to hear from you.
$cell=$_POST["number"];
$subject = "A new sms";
$message="api_id:xxxxxx\r
user:xxxxxx\r
password:xxxxx\r
to:$cell\r
reply:email@domain\r
text:SMS from Website";
mail('sms@messaging.clickatell.com', $subject, $message);
echo"Messgae Sent";
?>

