"index.php", "name" => get_lang('AdministrationTools')); $interbreadcrumb[] = array ("url" => 'user_list.php', "name" => get_lang('UserList')); $tool_name = get_lang('Survey'); Display::display_header($tool_name); ?> $_GET['keyword']); } else { $sql = "SELECT * FROM ".$group_table; $parameters = array (); } $res = api_sql_query($sql,__FILE__,__LINE__); if (mysql_num_rows($res) > 0) { $users = array (); while ($obj = mysql_fetch_object($res)) { $group = array (); $group[] = ''; $group[] = $obj->group_id; $group[] = $obj->groupname; $group[] = $group; } $table_header[] = array('',false); $table_header[] = array (get_lang('SerialNo'), true); $table_header[] = array (get_lang('FirstName'), true); $table_header[] = array (get_lang('LastName'), true); $table_header[] = array (get_lang('LoginName'), true); $table_header[] = array ('', false); echo '
'; /** @todo remove $curr_dbname from the parameters. This is not used. */ Display :: display_sortable_table($table_header, $users, array (), array (), $parameters); echo ''; echo '
'; } Display::display_footer(); ?>