Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created November 9, 2011 17:10
Show Gist options
  • Save RobSpectre/1352116 to your computer and use it in GitHub Desktop.
Save RobSpectre/1352116 to your computer and use it in GitHub Desktop.
Demonstration of numDigits in TwiML
<Response>
<Gather numDigits="3" action="/digits.php">
<Say>Enter more than 3 digits.</Say>
</Gather>
</Response>
<?php
$digits = $_REQUEST['Digits'];
?>
<Response>
<Say>Digits returned:</Say>
<Say><?php echo $digits; ?></Say>
</Response>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment