2022-02-25, 03:23 PM
Forget about search.php.
memberlist.php will do the job.
<input type="hidden" name="username_match" value="exact" />
Using this generic form (stolen from memberlist_search), you can search the exact username of a member from whatever place/site of the entire forum:
[ExiTuS]
memberlist.php will do the job.
Asma Wrote:No. For example, I want to search for Bill. When I search for Bill and click enter. All users with Bill in their name will show up.Yes. For example, you can chose the username match to be "exact", "begins", "contains":
<input type="hidden" name="username_match" value="exact" />
Using this generic form (stolen from memberlist_search), you can search the exact username of a member from whatever place/site of the entire forum:
<form method="post" action="memberlist.php">
<input type="hidden" name="username_match" value="exact">
<input type="hidden" name="website" id="website" value="">
<input type="hidden" name="sort" id="sort" value="regdate">
<input type="hidden" name="order" id="order" value="asc">
<input type="hidden" name="perpage" id="perpage" value="15">
<input type="text" name="username" id="username" title="Username">
<input type="submit" name="submit" value="Find">
</form>
[ExiTuS]