include("../include/irm.inc");
AuthCheck("5");
commonHeader("IRM Knowledge Base - Modify Article");
$query = "select * from kbarticles where (ID = $ID)";
$sth = $adb->prepare($query);
if($sth)
{
$res = $sth->execute();
$result = $sth->fetchrow_hash();
$answer = $result["answer"];
$question = $result["question"];
$faq = $result["faq"];
$categorylist = $result["categoryID"];
} else
{
PRINT "Could not prepare query: ".$sth->errstr."
\n";
}
PRINT "Here is where you can modify an article that is in the knowledge base.\n";
PRINT "