Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6864143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:52:28+00:00 2026-05-27T02:52:28+00:00

I am using this autocomplete tutorial to perform an autocomplete search. The problem is

  • 0

I am using this autocomplete tutorial to perform an autocomplete search. The problem is in SQL it displays autocomplete for more than one word only if the words are in sequence.

Example: The quick brown fox jumped over the lazy dog.

If the search is performed for quick, it will display all results containing quick. But if I perform a search for quick lazy, it doesn’t display anything. On the other hand, if I perform a search for quick brown, it will display the above sentence.

How can I make the search autocomplete for more than one word in any random order?

This is the SQL:

  $sRequest = "SELECT * FROM `table` WHERE `columnname` LIKE '%{$sParam}%' ORDER BY `columnname`";
        $aItemInfo = $GLOBALS['MySQL']->getAll($sRequest);
        foreach ($aItemInfo as $aValues) {
            echo $aValues['columnname'] . "\n";
        }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T02:52:28+00:00Added an answer on May 27, 2026 at 2:52 am

    You should split your array of words to search and build a query like this:

    SELECT * FROM `table` 
    WHERE `columnname` LIKE '%{$sParam1}%' 
      AND `columnname` LIKE '%{$sParam2}%'
      AND `columnname` LIKE '%{$sParam3}%'
    ORDER BY `columnname`";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Note: In this question I'm using the term autocomplete (or iterative search) to refer
I am using this autocomplete Plugin which works great but the problem is $('#request_song').autocomplete({
I followed the directions in this post: how can we integrate jquery autocomplete using
I am using autocomplete plugin in my form. I am using this autocomplete feature
Im using this jquery autocomplete plugin. The data format for autocomplete is like the
I am using this jQuery UI combobox autocomplete control out of the box off
I am currently using this autocomplete plugin . It's pretty straightforward. It accepts a
I am using this JQuery autocomplete plugin . It works, and it's simple. But
I am using this plugin: http://jquery.bassistance.de/autocomplete/demo/ I have an autocomplete textarea where the values
I am trying to implement SO style autocomplete. I am using this gem to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.