Previous Thread
Next Thread
Print Thread
Rate Thread
#210340 04/26/2001 7:49 PM
Joined: Aug 2000
Posts: 262
Enthusiast
Enthusiast
Offline
Joined: Aug 2000
Posts: 262
i noticed today that you can actually search by a user, but the problem is that you have to know the actuall username of the username that you are searching for. if you knew the username you could just go to the profile with a simple modification you can search for po and poil 's posts would come up. search for e and all forums and it will display all posts where the username has an e in it.

open up dosearch.php and find the line:


elseif ($Match == "Username") {
$Words_q = addslashes($Words);
$query = $query."AND B_Username = '$Words_q'";
$query = $query."\nAND B_Reged = 'y'\n";
}


and change it so it looks like this:


elseif ($Match == "Username") {
$WordsLike = "%"."$Words"."%";
$Words_q = addslashes($WordsLike);
$query = $query."WHERE (B_Username Like '$Words_q')";
$query = $query."\nAND B_Reged = 'y'\n";
}


that one will search for registered users, if you want to search for posts by all posts you make it looks like this instead:


elseif ($Match == "Username") {
$WordsLike = "%"."$Words"."%";
$Words_q = addslashes($WordsLike);
$query = $query."WHERE (B_Username Like '$Words_q')";
}


you just take out the registered y part.....if you want to do a serch by username and display it not by posts but by username something seperate might have to be made.

[:red]--------------
http://extremeforums.org

Sponsored Links
Joined: Aug 2000
Posts: 262
Enthusiast
Enthusiast
Offline
Joined: Aug 2000
Posts: 262
an example of this can be seen at http://www.extremeforums.org/search.php and try doing a search by username and entering an "e" or whatever in the search box.

[:red]--------------
http://extremeforums.org


Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
JAISP
JAISP
PA
Posts: 449
Joined: February 2008
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)