That was a real trouble for me so I thought I should post it. I was using the following code,
$date = date(”Ymd”);
$params = array();
$params[’serialNo’] = $date;
$params[’entryType’] = “master”;
require_once(’lib/nusoap.php’);
$masterClient=new soapclient(”http://localhost/nusoap/edit/server.php”);
$response = $masterClient->call(’makeEntry’, $params);
While testing, I was getting error as Cannot redeclare class soapclient……… I search inside the class like weirds, but didn’t find the source of […]


