Created
May 23, 2012 21:08
-
-
Save RobSpectre/2777836 to your computer and use it in GitHub Desktop.
Display Number Called Instead Of Number Calling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
header('Content-type: text/xml'); | |
$twilio_number = $_REQUEST['To']; | |
?> | |
<Response> | |
<Dial callerId="<?php echo $twilio_number; ?>"> | |
<Number>+15558675309</Number> | |
</Dial> | |
</Response> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment