Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created May 23, 2012 21:08
Show Gist options
  • Save RobSpectre/2777836 to your computer and use it in GitHub Desktop.
Save RobSpectre/2777836 to your computer and use it in GitHub Desktop.
Display Number Called Instead Of Number Calling
<?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