Category:  PHP Tutorials

Home » Web Development » Archive by category "PHP Tutorials"

Send SMS Message Using Clickatell API – Part 7

In HTTP/S, PHP Tutorials On October 1, 2007 0 Comments

After going through the first 6 parts of this tutorial, I realized I could do more to check the status of an sms message so i decided to… Read More »

Send SMS Message Using Clickatell API – Part 6

In HTTP/S, PHP Tutorials On September 29, 2007 0 Comments

The last part of the tutorial is using the callback url feature of the clickatell api. This feature allows the Clickatell gateway to forward message status details of… Read More »

Send SMS Message Using Clickatell API – Part 5

In HTTP/S, PHP Tutorials On September 28, 2007 0 Comments

This part of the tutorial is probably the most important part of the whole tutorial in sending an sms message using the clickatell api. You will create a… Read More »

Send SMS Message Using Clickatell API – Part 4

In HTTP/S, PHP Tutorials On September 26, 2007 0 Comments

The next thing to do is create a file “settings.php” which will store general settings for sending sms messages using clickatell’s api. settings.php <?php $baseurl =”http://api.clickatell.com”; //User details… Read More »

Send SMS Message Using Clickatell API – Part 3

In HTTP/S, PHP Tutorials On September 24, 2007 0 Comments

The next part of the tutorial is the Interface to type your SMS Message. I have designed a simple interface that you can use. You can also design… Read More »

Send SMS Message Using Clickatell API – Part 2

In HTTP/S, PHP Tutorials On September 24, 2007 0 Comments

The second part of the tutorial is actually optional for those who know their way around php coding. These pages will help you diagnose errors with ease. Create… Read More »

Send SMS Message Using Clickatell API – Part 1

In HTTP/S, PHP Tutorials On September 23, 2007 2 Comments

I have been receiving numerous emails on how to send SMS Messages using Clickatell’s HTTP API with a PHP script. I have therefore designed this tutorial to send… Read More »

Send Emails in PHP – Beginner

In PHP Tutorials On September 15, 2007 0 Comments

This tutorial shows you how to send a simple email in PHP. The PHP function you will use is “mail()”. The mail function is boolean, that is to… Read More »

Counting the number of Upper-Case Letters in a String – PHP

In PHP Tutorials On September 15, 2007 0 Comments

The first lesson on this blog is a tutorial on how to count the number of Upper Case letters in a given string. Thanks to the number functions… Read More »