I am confused regarding how to extract data using PHP from SOAP WSDL
I have written following code and don't know what to do further
<?php
require_once('inc/nusoap-0.7.3/nusoap.php');
$params = array('company_id' => 'COM-000001');
$wsdl= "http://www.nepalsharemarket.com/JambDataService/PremiumService.asmx?WSDL";
$soap = new soapclient($wsdl); //nusoap_client
$result = $soap->__soapCall('getMarketDetails',$params);
print_r ($result);
?>
Here is the Soap Request and Response Sample
http://www.nepalsharemarket.com/JambDataService/PremiumService.asmx?op=getMarketDetails
Here is the SOAP WSDL
http://www.nepalsharemarket.com/JambDataService/PremiumService.asmx?WSDL