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

  • SEARCH
  • Home
  • 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 8983637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:53:22+00:00 2026-06-15T20:53:22+00:00

I know there’s a wizard out there who can answer this … I have

  • 0

I know there’s a wizard out there who can answer this …

I have a PHP / MySQL database that lists over 500 wines. Using a form, web visitors can search the database by wine name, country, vintage, etc.

I have tested two (2) different queries.

The one I want to use refuses to return a country specific search for USA, but has NO problem with Spain, Australia, Italy, Canada or Chile (or even United States – which I tested) .

USA only shows up when the user enters a wine name or vintage, etc., that happens to match a USA product. Otherwise, it treats USA like it doesn’t exist.

The other code (bottom block) returns all USA searches, but does not search across multiple columns / terms, which I need.

  1. This code WILL NOT find a country-specific search for USA

       $cob=mysql_real_escape_string($_POST['user-entry']);
    
    // remove the line below to prevent searching multiple terms
       $cob = '+' . str_replace(' ',' +',$cob);
    
      $sql = sprintf ( 
      "SELECT CSPC, Country, Producer, Wine, Year, Price,
      MATCH ( CSPC, Country, Producer, Wine, Year ) 
      AGAINST ( '&s' IN BOOLEAN MODE )  
      FROM winecellar WHERE 
      MATCH ( CSPC, Country, Producer, Wine, Year ) 
      AGAINST ( '%s' IN BOOLEAN MODE )", $cob, $cob ) . $pricerange;
    
  2. This code WILL find a country-specific search for USA

      $cob=mysql_real_escape_string($_POST['user-entry']);
    
      $sql="SELECT ID, CSPC, Country, Producer, Wine, Year, Price 
      FROM winecellar WHERE
      ( CSPC LIKE '%" . $cob .  "%' 
      OR Country LIKE '%" . $cob ."%' 
      OR Producer LIKE '%" . $cob ."%' 
      OR Wine LIKE '%" . $cob ."%' 
      OR Year LIKE '%" . $cob ."%' )" . $pricerange;
    
    • MySQL Server version: 5.1.65-cll
    • Country = varchar (20)
    • Country = NULL No
    • Full-Text Index: Country, Producer, Wine, Year

So my question is, what is preventing the multi-term code (in the top block) from recognizing USA as a valid query?

Any help would be greatly appreciated, thanks guys.

Chris

  • 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-06-15T20:53:24+00:00Added an answer on June 15, 2026 at 8:53 pm

    You’re using a FULLTEXT index. The default minimum word length is 4. Three letter words are ignored. Here is the reference for changing defaults.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know there's a lot of other questions out there that deal with this
I know there are lots of tools on the net that can make our
I know there is a lot on this topic but I can't get any
I know there are duplicates of this question, and the answer was to refactor
I know there are lots of stack overflow posts about this. I have this
I know there have been a few threads on this before, but I have
I know there are similar post to this but I couldn't find my answer
I know there are several topics out there about this, but none of them
I know there are dozens of questions that ask about this error, but none
I know there are so many posts about issues like this, but I can

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.