Skip to content

Instantly share code, notes, and snippets.

@philips
Created December 23, 2012 23:06
Show Gist options
  • Save philips/4366616 to your computer and use it in GitHub Desktop.
Save philips/4366616 to your computer and use it in GitHub Desktop.
<?php
require 'twilio-php/Services/Twilio.php';
$username = $argv[1];
$response = new Services_Twilio_Twiml;
$gather = $response->gather(array('numDigits' => 5,
'action' => "http://example.com/foo.php?username=$username"
));
$gather->say("Hello Caller");
$gather->action();
print $response;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment