function getLicenseCategories($id=""){
$where = "";
if($id)
$where=" WHERE id in (".$id.");";
$query = "SELECT * FROM ".$this->getPrefix()."license_categories".$where;
$result = $this->Execute($query);
if (!$result||$result->RecordCount()<1)
return false;
if($id!=""){
$ro...