Using nuSOAP to get XML as array
Posted: Thu Mar 23, 2006 10:03 am
Hi
Is there anyway to get the xml data in an array when knowing the xml file alone ?
Anyway to get this working ?
Thanks
Is there anyway to get the xml data in an array when knowing the xml file alone ?
Code: Select all
<?php
require_once('nusoap/lib/nusoap.php');
$url = 'http://forums.devnetwork.net/rss.php';
$parameters = "";
$soap_client = new soapclient($url, 'xml');
$results = $soap_client->call('', $parameters);
print_r($results);
?>Thanks