We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit ead2773Copy full SHA for ead2773
index.php
@@ -0,0 +1,11 @@
1
+<?php
2
+ header("content-type: text/xml");
3
+ echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
4
+?>
5
+<Response>
6
+ <Gather numDigits="5" timeout="10000" action="zip-lookup.php" method="GET">
7
+ <Say>
8
+ hello, please enter your 5 digit zip code
9
+ </Say>
10
+ </Gather>
11
+</Response>
zip-lookup.php
@@ -0,0 +1,5 @@
+ echo "<Response><Say>You entered " . $_REQUEST['Digits'] . "</Say></Response>";
0 commit comments