Page 1 of 1

Using nuSOAP to get XML as array

Posted: Thu Mar 23, 2006 10:03 am
by anjanesh
Hi

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);
?>
Anyway to get this working ?

Thanks