3rd party passes the details to the URL. It makes get request to the URL with details as url-encoded HTTP query parameters.
I want to collect the values of 'CallSid' and 'From' from this url.
I tried following codes
<?php echo $_GET; ?>
and
<?php echo utf8_decode(urldecode($_GET)); ?>
and
$URL = $_SERVER['REQUEST_URI'];
$parsedURL=parse_url($URL);
$URLQ=$parsedURL['CallSid'];
echo $parsedURL;
but did not got values for any one of the above code. Please try to give effective solution for the above problem. Thanks in advance.
http://_______.com/customer_missed_call.php?CallSid=...?