Listing all users
Permalink
Hey Guys,
I am trying to list all users in a Single page from the database.
You have any easy solution?.
Looking forward...
I am trying to list all users in a Single page from the database.
You have any easy solution?.
Looking forward...
Is there any simple solution for this?, i don't have much time to get this up and running....
have a look at the user list class:
Loader::model('user_list'); $userList = new UserList(); $userList->sortBy('uName', 'asc'); $keywords = $this->get('keywords'); if ($keywords != '') { $userList->filterByKeywords($keywords); } $users = $userList->getPage();
this is what the dashboard uses to fetch all the users..
There's not easy example but I guess someone who wants to build something like that knows how to read and write php code.