I have checked multiple examples and the w3Schools tutorial but I can\'t figure out the structure of the SOAP response. I haven\'t touch php/xml in more than 10 years so you
retrieve value from this type response
1
Ahmedabad
23.045839
72.550578
21
Amritsar
31.705603
74.807337
using this code you can easily get all the Tables data in $title variable and using that you can easily get any specific value easily...
$sxe = new SimpleXMLElement($response);
$sxe->registerXPathNamespace('d', 'urn:schemas-microsoft-com:xml-diffgram-v1');
$result = $sxe->xpath("//NewDataSet");
echo "";
//print_r($result[0]);
foreach ($result[0] as $title) {
print_r($title);
}