Advertisement

02.05.2008 at 01:46AM PST, ID: 23137501
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.0

MySQL and PHP Searching

Asked by rhickmott in PHP Scripting Language, MySQL Server

Hello there.

We maintain an inhouse system for tracking various aspects of our company and one thing thats lacing is the systems search. Im trying to replace the search system with something a bit better as the current one to be frank although works is pants.

We are using a MySQL InnoDB tables so fullsearching is a nono and what were searching is mainly addresses so keeping a full text index or search words would be pointless. A client search foer xample takes a keyword and searched the name, address and number fields for mathcing records and isplays the first 200.

I am to replace it with a keyword search so extracting keywords and doing multiple like statement. The search classes also provide the AJAX auto completes which is where the main problem comes into play.

Problem 1 ) Searching for "G" will return all records with the words GAL it will pull all records with GAL in them anywhere and in no particular order. What we want is to order the results so that when you type GAL all records starting with GAL appear first followed by say XYZGAL. Ordering by name seems to do very little. I assume something like WHERE `name` LIKE 'GAL%' or `name` LIKE `%gal%' would trigger some sort of logic but nope.

Problem 2 ) Im planning on changing to multiple keywords. Is there anyway of getting the results that contain more than one keyword at the top and then only ones with one after?

Problem 3 ) Search results only do one page using a limit. I want to do the other pages and the real snag is that users also want to sort the columns. So if you limit to 200 results and there are 500 and sort the primary key by ASC or DESC respectivly you get different results.

Is there any examples of good PHP search engines that do sorting and paging that arnt aimed at building fullkey tables used for page searching?Start Free Trial
[+][-]02.05.2008 at 07:53AM PST, ID: 20823972

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]02.05.2008 at 07:54AM PST, ID: 20823983

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.06.2008 at 12:58AM PST, ID: 20830483

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.12.2008 at 02:12AM PST, ID: 20873624

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: PHP Scripting Language, MySQL Server
Sign Up Now!
Solution Provided By: rhickmott
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628