[insert_php] $url = “http://webapi.suvidya.ac.in/SuvidyaWebsite_WebService.asmx?wsdl”;
$client = new SoapClient($url);

$res = $client->Web_GetTestimonialMaster();
$any = $res->Web_GetTestimonialMasterResult->any;
$xml = simplexml_load_string($any);
$json = json_encode($xml);
$array = json_decode($json);

echo $table = $array->NewDataSet->Table[0]->StudName;
//echo json_encode($table);
//echo count($table);

//for($i=0; $iStudName;
//}
[/insert_php]