Drop Down User List

tobisagt 12 Nov, 2011
Hi,

is it possible to load the names of all registered users into a drop down list?

- tobi
GreyHead 13 Nov, 2011
Hi tobi,

Yes, If you check the Joomla! docs I think that there is a built-in function to do this. Otherwise you can run a DB query on the jos_users table and build a drop-down from the query results.

Bob
tobisagt 16 Nov, 2011
Thats the code to show all user in a drop down list

$name = 'user';
$active = 0;
echo JHTML::_('list.users', $name, $active);
This topic is locked and no more replies can be posted.