. For more information, visit http://sourceforge.net/projects/ipreg, or contact me at wietsew@users.sourceforge.net *****************************************************************************/ // includes include("includes.php"); // check authorisation $auth = auth("userclassauth", $config_auth_userclassauthview, 0); // start output include("header.php"); // set template $tp = new Template("tpl/userclassauth.tpl"); // set language variables $tp->setvars($lang); // get userclassauth info $result = mysql_query("SELECT uc.userclass_id, uc.userclass_name, uca.userclassauth_id, uca.item, uca.id, uca.auth FROM userclass uc, userclassauth uca WHERE uc.userclass_id=uca.userclass_id ORDER BY uc.userclass_name, item, id, auth") or die(mysql_error()); for ($i=0;$row=mysql_fetch_object($result);$i++) { $tp->set("count", $i+1); $tp->set("userclass_id", $row->userclass_id); $tp->set("userclass_name", $row->userclass_name); $tp->set("item_name", $authitems[$row->item]['name']); $tp->set("auth", $row->auth); // check for set id if($row->id>0) { // id set $item = $row->item; $txt_item_id = $authitems[$row->item]['item_id']; $txt_item_name = $authitems[$row->item]['item_name']; $subresult = mysql_query("SELECT $txt_item_id AS item_id, $txt_item_name AS item_name FROM $item") or die(mysql_error()); $subrow=mysql_fetch_object($subresult); $tp->set("subitem_name", $subrow->item_name); } else { // no id, so make output empty $tp->set("subitem_name", ""); } $tp->parse("ucarow"); } if (($i>0) ? $tp->parse("uca") : $tp->hide("uca")); // output $tp->parse(); $tp->spit(); include("footer.php"); ?>