Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
253 views
in Q2A Core by

1 Answer

+3 votes
by
selected by
 
Best answer

You get the ID of a user with a database query:

SELECT userid FROM qa_users WHERE handle = 'username';

Or

SELECT userid, handle FROM qa_users;

if you want a list of all users and their IDs.

...