include("../include/irm.inc");
AuthCheck("8");
commonHeader("ITC Software - Information");
$query = "SELECT ID, class FROM software WHERE (ID = $ID)";
if($SID) {
$query2 = "SELECT * FROM software_install WHERE (ID = $SID) and (SID = $ID)";
}
$sth = $adb->prepare($query);
if($sth)
{
$res = $sth->execute();
$numRows = $sth->rows();
$result = $sth->fetchrow_hash();
$class = $result["class"];
$ID = $result["ID"];
showSoftware($ID);
if ($SID) { showInstall($SID,$ID); }
if ( $class == 'Application Bundle' ) showBundled($ID);
showLicenses($ID);
} else
{
PRINT "Could not prepare query: ".$sth->errstr."
\n";
} ?>
Attached documentation:
$category="software";
include "../docs/index.php";
commonFooter();
?>