Log in

View Full Version : syntax to find a member


pattycake
12-16-2013, 06:27 PM
I can use http://domainname.com/member.php?u=14196
to find a member by their user ID

what syntax would I use to find a user by their username?

mokujin
12-16-2013, 06:30 PM
<a href="https://vborg.vbsupport.ru/member.php?username=pattycake" target="_blank">https://vborg.vbsupport.ru/membe...name=pattycake</a>

pattycake
12-16-2013, 07:01 PM
thank you

--------------- Added 1387227859 at 1387227859 ---------------

That works great but how about if I am in the admin panel?
Link in admin is:
http://domainname.com/admincp/user.php?do=edit&u=146110

how about same link in the admin cp for username (and/or email address)

Lynne
12-17-2013, 03:09 AM
You can't directly link to a user's profile in the admincp with a username or email.

kh99
12-17-2013, 12:24 PM
That's true, but you can do this:
admincp/user.php?do=find&user[username]=pattycake


and it will redirect to the "edit user" page if there is only one user found. You could also add &submit=Exact%20Match to limit it to exact user names (probably what you'd want to do if you're trying to link to a specific user).

Also you should be able to replace user[username] with user[email] to search by email.

If you're writing a php script to do this, you'd obviously want to url encode the user name or email address.

pattycake
12-17-2013, 12:48 PM
That's true, but you can do this:
admincp/user.php?do=find&user[username]=pattycake


and it will redirect to the "edit user" page if there is only one user found. You could also add &submit=Exact%20Match to limit it to exact user names (probably what you'd want to do if you're trying to link to a specific user).

Also you should be able to replace user[username] with user[email] to search by email.

If you're writing a php script to do this, you'd obviously want to url encode the user name or email address.

PERFECT !! Thats exactly what I needed.

Lynne
12-17-2013, 06:30 PM
That's true, but you can do this:
admincp/user.php?do=find&user[username]=pattycake


and it will redirect to the "edit user" page if there is only one user found. You could also add &submit=Exact%20Match to limit it to exact user names (probably what you'd want to do if you're trying to link to a specific user).

Also you should be able to replace user[username] with user[email] to search by email.

If you're writing a php script to do this, you'd obviously want to url encode the user name or email address.
Wow, I didn't know that. :)