");
}
// get the id and name from the groups table
$sql = new Owl_DB;
$sql->query("select id,name from $default->owl_groups_table");
$i=0;
// store in a double array
while($sql->next_record())
{
$groups[$i][0] = $sql->f("id");
$groups[$i][1] = $sql->f("name");
$i++;
}
//get all information from the users table based on the group id
$sql->query("select * from $default->owl_users_table where id = '$id'");
// loop through the recordset
while($sql->next_record())
{
print("");
}
}
//-------------------------------------------------------------
// if an action has occurred, check if user is set and then print out user preferences
if($action)
{
if(isset($owluser))
{
printuser($owluser);
}
}
else
{
exit("$lang_err_general");
}
$expand = 0;
include("./lib/footer.inc");
?>