Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Create an SMS Conversation in PHP


How do you turn a handful of isolated messages to and from the same party into a true conversation? You need some way to remember state between each message that is exchanged. This is because SMS is a stateless protocol. Building traditional web applications has this same hurdle, as HTTP is also a stateless protocol. This problem has been solved for web applications through the use of HTTP cookies and, rather than reinvent the wheel, the Twilio Messaging API uses the same solution.

This guide will show you how Programmable Messaging(link takes you to an external page) makes this easy for you and your PHP application. The code snippets in this guide are written using the PHP language version 5.3 or higher, and make use of the Twilio PHP SDK(link takes you to an external page).

If you haven't written your own SMS webhooks with PHP before, you may want to first check out our guide, Receive and Reply to SMS and MMS Messages in PHP. Ready to go? Let's get started!

(information)

Info

Twilio Conversations, a more recent product offering, is an omni-channel messaging platform that allows you to build engaging conversational, two-way messaging experiences. Be sure to check out our Conversations product to see if it's a better fit for your needs.


Using HTTP Cookies with Webhooks

using-http-cookies-with-webhooks page anchor

In web apps, you write a cookie to keep "statefulness" between separate requests from the same browser. Similarly, SMS messages are independent communications between two parties, so Twilio allows you to tie them together as a logical session via cookies. This means you can use server-side sessions to keep track of application state between requests. How cool is that? Twilio will expire the cookies for that conversation after four hours of inactivity, as if the user "closed the browser."

Storing Conversation Data

storing-conversation-data page anchor

The cookies let you share state across multiple messages allowing you to treat separate messages as a conversation, and store data about the conversation in the cookies for future reference.

You can store the data directly in a cookie, or you can use a session state management framework.


Track SMS Conversations using a Session

track-sms-conversations-using-a-session page anchor

Let's try using session counters to see if a particular user has messaged us before. If they're a new sender, we'll thank them for the new message. If they've sent us messages before, we'll specify how many messages we've gotten from them.

Tracking SMS Conversations using Cookies

tracking-sms-conversations-using-cookies page anchor
PHP

_38
<?php
_38
_38
// start the session
_38
session_start();
_38
_38
// get the session varible if it exists
_38
$counter = $_SESSION['counter'];
_38
_38
// if it doesnt, set the default
_38
if(!strlen($counter)) {
_38
$counter = 0;
_38
}
_38
_38
// increment it
_38
$counter++;
_38
_38
// save it
_38
$_SESSION['counter'] = $counter;
_38
_38
// make an associative array of senders we know, indexed by phone number
_38
$people = array(
_38
"+14158675308"=>"Rey",
_38
"+12349013030"=>"Finn",
_38
"+12348134522"=>"Chewy",
_38
);
_38
_38
// if the sender is known, then greet them by name
_38
if(!$name = $people[$_REQUEST['From']]) {
_38
$name = "Friend";
_38
}
_38
_38
// output the counter response
_38
header("content-type: text/xml");
_38
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
_38
?>
_38
<Response>
_38
<Message><?php echo $name ?> has messaged <?php echo $_REQUEST['To']." ".$counter ?> times</Message>
_38
</Response>


Rate this page: