Eligibility :
Key Points of Syllabus
[insert_php]
$url = “http://webapi.suvidya.ac.in/SuvidyaWebsite_WebService.asmx?wsdl”;
$client = new SoapClient($url);
$res = $client->Web_GetCourseMasterByCourseId(array(“CourseId”=>12));
$any = $res->Web_GetCourseMasterByCourseIdResult->any;
$xml = simplexml_load_string($any);
$json = json_encode($xml);
$array = json_decode($json);
$table = $array->NewDataSet->Table;
echo !is_object($table->Course_Description) ? $table->Course_Description : “”;[/insert_php]
$client = new SoapClient($url);
$res = $client->Web_GetCourseMasterByCourseId(array(“CourseId”=>12));
$any = $res->Web_GetCourseMasterByCourseIdResult->any;
$xml = simplexml_load_string($any);
$json = json_encode($xml);
$array = json_decode($json);
$table = $array->NewDataSet->Table;
echo !is_object($table->Course_Description) ? $table->Course_Description : “”;[/insert_php]
Objective