Log in

View Full Version : The search for Custom User Title


Panzer Max
04-08-2013, 12:16 PM
So, how can I search and pull up all users with Custom User Title set as Yes, Admin set (HTML allowed) ?

Does anyone know which table and field in the db?

thanks

Edit: Is is User/customtitle ?

Looks like the values are
0 No
1 Yes, Admin set
2 Yes, user set

Is that correct?

Simon Lloyd
04-09-2013, 04:57 AM
Perhaps use a query in phpmyadmin like:SELECT*
FROM`MyTable.user`
WHERE`customtitle`>0
LIMIT 0 , 30change MyTable.User to be the name of your table DOT then the name of your user table to include any prefix if you have one.