If you have not read first part of “Write an SMS Application”, read it here.
Continuing from next time, let’s assume that we registered a keyword ‘QUOTE’. It means that any message which starts with QUOTE (or quote or QuOtE) and sent to 56767888 will call our AppURL http://webkoof.com/quote.php. This is how it will exactly happen:
- Someone sends QUOTE <anything after it> to 56767888. (Please note that the space after QUOTE is needed. QUOTER will not call your appURL)
- SMSGupShup will recieve the message and will call our AppURL with sender’s phone number and content of the SMS.
- They will pass the sender’s phone number and SMS to our application as GET parameters. Which means that if someone with phone number 9876543210 sends QUOTE to 56767888 then they will actually call http://webkoof.com/quote.php?msisdn=919876543210&content=QUOTE
Notice that parameter name for phone number is msisdn and for SMS content is content. Also notice that phone number is always prefixed by the country code (91 for India).
Our applicaton should start with GETting these parameters.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?php $sender = $_GET["msisdn"]; // Get the phone number $content = $_GET["content"]; // Get the message /* Remember that an user can send anything after QUOTE to the application. So, QUOTE GANDHI will also come to your application and so will QUOTE xxx. Let's make sure that we recieved only QUOTE or send an error. */ if ($content == 'QUOTE') $reply = selectQuote(); //selectQuote is a function, which we need to define. else $reply = 'You have sent wrong command. You should only send QUOTE to 56767888.'; fucntion selectQuote() { /* Do something and find out a quote. You can use a pre defined array of quotes and pick one. or you can fetch a RSS feed of quotes from somewhere and pick one. Right now, I'm returning a fixed quote every time. */ $quote = "There is no gain without pain"; return $quote; } |
In the code till now, we decided what to send based on what we get. Please remember that choosing the quote (selectQuote function) can be a very simple algorithm which involves picking up one random quotes from a given array (or text file or even mysql database) or it may be a complex one involving RSS feeds. The way you select the quote is a programming problem and it may vary from user to user. In this case, we are returning the same quote every time because we want to learn the SMS App flow in simplistic manner.
So, we finally decided what to send back ($reply variable) and to whom ($sender variable). How will we send back the SMS then? It is not as complex as it may seem. If your script outputs in a given JSON or XML format, SMSGupShup will handle all the dirty work and automatically send the SMS. Acceptable formats are following:
1. JSON
[{ "msisdn":"919876543210", "content":"Our Reply here"}, {"msisdn":"919876543211", "content":"Another message to same or different number"}]
2. XML
<ApplicationResponse> <Response> <msisdn>919876543210</msisdn> <content>Our Reply here</content> </Response> <Response> <msisdn>919876543211</msisdn> <content>Another message to same or different number</content> </Response> <ApplicationResponse>
Notice that a single incoming SMS can result in sending more than one messages as response to different numbers. But, for our simple application we only need to send one message to only one user. So, we need to format our response in the given format. We can use simple echo command or more advanced json_encode command. Continuing our quote.php file:
24 25 26 | // Using simple echo fucntion echo "[ { \"msisdn\":\"$sender\", \"content\":\"$reply\"}]"; ?> |
Alternatively, you can also use json_encode function (PHP5). Although it seem little complex but, for creating jsons in other complex cases are too much to handle using echo.
24 25 26 27 28 | // Using more advanced json_encode function. $reponseArray = array('msisdn'=>$sender, 'content'=>$reply); $json_response = json_encode($responseArray); echo "[$json_response]"; ?> |
Similarly you can also choose to output XML format. Again, it does not matter if you use echo to create your XML or you use other complex functions to write XML.
Hence, we created our first SMS application which is very simple but gives us good enough idea of the flow logic involved. Wait for complexities.
And ya…! Happy Holi. ![]()








