I’m sending this url encoded message: http://anydomain.com/message.php?Message=This+is+a+test+message
To this url: http://anydomain.com/message.php
I can’t figure out how to decode and get “This is a test message” in the $response-> say() below. here's the code..
<?php
require_once(‘Services/Twilio.php’);
$response = new Services_Twilio_Twiml();
$response->pause(array("length" => 1));
$response->say(*how do i put the url encoded "This is a test message" message here??*, array("voice" => alice));
$response->pause(array("length" => 1));
$response->say('End of message', array("voice" => alice));
print $response;
The rest of the twiml works... new at this so any help would be much appreciated. Thanks- Jim