tags:

views:

36

answers:

1
$xml = curl_exec($ch);

i hava an xml object like this which is retruned from a webservice. how can i parse this in PHP?????

+2  A: 

Use any of php's XML modules, for example SimpleXML.

phihag