I am accessing an external PHP server feed (not a real link):
$raw = file_get_contents('http://www.domain.com/getResults.php');
that returns data in the following context:
<pre>Array
(
[RequestResult] => Array
(
[Response] => Success
[Value] => 100
[Name] => Abracadabra
)
)
</pre>
But I can't figure out how to handle this response... I would like to be able to grab the [Value] value and the [Name] value but my PHP skills are pretty weak... Additionally if there is a way to handle this with JavaScript (I'm a little better with JavaScript) then I could consider building my routine as a client side function...
Can anyone suggest a way to handle this feed response?