Using Twilio and a php script how do I get the from number and body data from an incoming sms?
I have a paid account. My incoming texts are being sent to my php script via twilio but I just need to know how to get the number and body.
This should be easy but its not.
<? // my script
$from = ???;
$body = ???;
?>
Please provide a php example if you can because I don't understand their api with no examples. Thanks