Skip to content

Instantly share code, notes, and snippets.

@philips
Created December 23, 2012 23:07
Show Gist options
  • Save philips/4366622 to your computer and use it in GitHub Desktop.
Save philips/4366622 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(
'action' => "http://example.com/foo.php?username=$username"
));
$gather->say("Hello Caller");
print $response;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment